我创建了一个用于预处理 POI 的 API,并将节点的坐标存储在“点”类型的列 (MySQL) 中。
由于 API 已完成且运行无误,您可以猜到我已经为 CakePHP 实现了 Point-Type。
但现在的问题是: 我想用 PHPUnit 测试 API,但是 Cake\Database\Schema\Table::createSql-Method 弄乱了 sql。
直到 Object 包含点类型,但此函数创建的 sql 缺少数据类型。
您有什么想法可以解决缺少的类型吗? 或者如何在夹具中执行原始 sql 查询?
下面是代码片段和数据
“节点”的 Fixture 的 $fields:
public $fields = [
'id' => ['type' => 'integer', 'length' => 11, 'unsigned' => false, 'null' => false, 'default' => null, 'comment' => '', 'autoIncrement' => true, 'precision' => null],
'osm_id' => ['type' => 'biginteger', 'length' => 20, 'unsigned' => false, 'null' => false, 'default' => null, 'comment' => '', 'precision' => null, 'autoIncrement' => null],
'version' => ['type' => 'biginteger', 'length' => 20, 'unsigned' => false, 'null' => false, 'default' => null, 'comment' => '', 'precision' => null, 'autoIncrement' => null],
'coordinates' => ['type' => 'point', 'length' => null, 'null' => false, 'default' => null, 'collate' => null, 'comment' => '', 'precision' => null],
'category' => ['type' => 'string', 'length' => 255, 'null' => false, 'default' => null, 'collate' => 'utf8_general_ci', 'comment' => '', 'precision' => null, 'fixed' => null],
'created' => ['type' => 'timestamp', 'length' => null, 'null' => false, 'default' => 'CURRENT_TIMESTAMP', 'comment' => '', 'precision' => null],
'modified' => ['type' => 'timestamp', 'length' => null, 'null' => true, 'default' => null, 'comment' => '', 'precision' => null],
'_constraints' => [
'primary' => ['type' => 'primary', 'columns' => ['id'], 'length' => []],
],
'_options' => [
'engine' => 'InnoDB',
'collation' => 'utf8_general_ci'
],
];
调试 vendor/cakephp/cakephp/src/TestSuite/Fixture/TestFixture.php 中的 $this->_schema /src/TestSuite/Fixture/TestFixture.php(第 294 行)
object(Cake\Database\Schema\Table) {
[protected] _table => 'nodes'
[protected] _columns => [
'id' => [
'type' => 'integer',
'length' => (int) 11,
'unsigned' => false,
'null' => false,
'default' => null,
'comment' => '',
'autoIncrement' => true,
'precision' => null,
'baseType' => null
],
'osm_id' => [
'type' => 'biginteger',
'length' => (int) 20,
'unsigned' => false,
'null' => false,
'default' => null,
'comment' => '',
'precision' => null,
'autoIncrement' => null,
'baseType' => null
],
'version' => [
'type' => 'biginteger',
'length' => (int) 20,
'unsigned' => false,
'null' => false,
'default' => null,
'comment' => '',
'precision' => null,
'autoIncrement' => null,
'baseType' => null
],
'coordinates' => [
'type' => 'point',
'length' => null,
'null' => false,
'default' => null,
'comment' => '',
'precision' => null,
'baseType' => null
],
'category' => [
'type' => 'string',
'length' => (int) 255,
'null' => false,
'default' => null,
'collate' => 'utf8_general_ci',
'comment' => '',
'precision' => null,
'fixed' => null,
'baseType' => null
],
'created' => [
'type' => 'timestamp',
'length' => null,
'null' => false,
'default' => 'CURRENT_TIMESTAMP',
'comment' => '',
'precision' => null,
'baseType' => null
],
'modified' => [
'type' => 'timestamp',
'length' => null,
'null' => true,
'default' => null,
'comment' => '',
'precision' => null,
'baseType' => null
]
]
[protected] _typeMap => [
'id' => 'integer',
'osm_id' => 'biginteger',
'version' => 'biginteger',
'coordinates' => 'point',
'category' => 'string',
'created' => 'timestamp',
'modified' => 'timestamp'
]
[protected] _indexes => []
[protected] _constraints => [
'primary' => [
'type' => 'primary',
'columns' => [
(int) 0 => 'id'
],
'length' => []
]
]
[protected] _options => [
'engine' => 'InnoDB',
'collation' => 'utf8_general_ci'
]
[protected] _temporary => false
[protected] _columnKeys => [
'type' => null,
'baseType' => null,
'length' => null,
'precision' => null,
'null' => null,
'default' => null,
'comment' => null
]
[protected] _columnExtras => [
'string' => [
'fixed' => null,
'collate' => null
],
'text' => [
'collate' => null
],
'integer' => [
'unsigned' => null,
'autoIncrement' => null
],
'biginteger' => [
'unsigned' => null,
'autoIncrement' => null
],
'decimal' => [
'unsigned' => null
],
'float' => [
'unsigned' => null
]
]
[protected] _indexKeys => [
'type' => null,
'columns' => [],
'length' => [],
'references' => [],
'update' => 'restrict',
'delete' => 'restrict'
]
[protected] _validIndexTypes => [
(int) 0 => 'index',
(int) 1 => 'fulltext'
]
[protected] _validConstraintTypes => [
(int) 0 => 'primary',
(int) 1 => 'unique',
(int) 2 => 'foreign'
]
[protected] _validForeignKeyActions => [
(int) 0 => 'cascade',
(int) 1 => 'setNull',
(int) 2 => 'setDefault',
(int) 3 => 'noAction',
(int) 4 => 'restrict'
]
}
以及由上述 shemas createSql 方法生成的错误 sql 查询:
object(Cake\Database\Statement\MysqlStatement) {
[protected] _statement => object(PDOStatement) {
queryString => 'CREATE TABLE `nodes` (
`id` INTEGER(11) NOT NULL AUTO_INCREMENT,
`osm_id` BIGINT NOT NULL,
`version` BIGINT NOT NULL,
`coordinates` NOT NULL,
`category` VARCHAR(255) COLLATE utf8_general_ci NOT NULL,
`created` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
`modified` TIMESTAMP NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB'
}
[protected] _driver => object(Cake\Database\Driver\Mysql) {
'connected' => true
}
[protected] _hasExecuted => false
[protected] _bufferResults => true
}
如您所见,“坐标”缺少数据类型。
版本:
PHP:
PHP 5.6.30-12~ubuntu16.04.1+deb.sury.org+1
蛋糕:3.3.16
PHP单位:4.8.36
最佳答案
支持的表创建 SQL 类型在各自的模式类中进行了硬编码。可能有改进的余地,从为不受支持的类型抛出异常开始。
一个干净的方法可能是创建扩展模式类并覆盖 \Cake\Database\Schema\BaseSchema::columnSql()方法并相应地为 point 创建适当的 SQL类型。
这还需要使用覆盖 schemaDialect() 的扩展驱动程序类创建相应模式类实例的方法。
这里有一个MySQL的简单例子来演示这个原理:
// src/Database/Driver/Mysql.php
namespace App\Database\Driver;
use App\Database\Schema\MysqlSchema;
use Cake\Database\Driver\Mysql as BaseMysql;
class Mysql extends BaseMysql
{
public function schemaDialect()
{
if (!$this->_schemaDialect) {
$this->_schemaDialect = new MysqlSchema($this);
}
return $this->_schemaDialect;
}
}
// src/Database/Schema/MysqlSchema.php
namespace App\Database\Schema;
use Cake\Database\Schema\MysqlSchema as BaseMysqlSchema;
use Cake\Database\Schema\TableSchema; // as of CakePHP 3.4
// use Cake\Database\Schema\Table as TableSchema; // before CakePHP 3.4
class MysqlSchema extends BaseMysqlSchema
{
public function columnSql(TableSchema $schema, $name)
{
$data = $schema->column($name);
if ($data['type'] === 'point') {
$out = $this->_driver->quoteIdentifier($name);
$out .= ' POINT';
if (isset($data['null']) && $data['null'] === false) {
$out .= ' NOT NULL';
}
if (isset($data['comment']) && $data['comment'] !== '') {
$out .= ' COMMENT ' . $this->_driver->schemaValue($data['comment']);
}
return $out;
}
return parent::columnSql($schema, $name);
}
}
然后只需配置数据源driver config/app.php 中的选项因此:
'driver' => \App\Database\Driver\Mysql::class,
一些更简单但也不太干的事情是覆盖 TestFixture::create() NodesFixture 中的方法类,并在其中执行完全自定义的表创建 SQL。
public function create(ConnectionInterface $db)
{
try {
$query = 'CREATE TABLE ...';
$stmt = $db->prepare($query);
$stmt->execute();
$stmt->closeCursor();
} catch (Exception $e) {
$msg = sprintf(
'Fixture creation for "%s" failed "%s"',
$this->table,
$e->getMessage()
);
Log::error($msg);
trigger_error($msg, E_USER_WARNING);
return false;
}
return true;
}
如果你需要支持不同的方言,你可以检查$db->driver()并相应地创建适当的 SQL。
关于php - 使用 Point 类型的 PHPUnit/CakePHP Fixtures,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44807874/
我正在学习如何使用Nokogiri,根据这段代码我遇到了一些问题:require'rubygems'require'mechanize'post_agent=WWW::Mechanize.newpost_page=post_agent.get('http://www.vbulletin.org/forum/showthread.php?t=230708')puts"\nabsolutepathwithtbodygivesnil"putspost_page.parser.xpath('/html/body/div/div/div/div/div/table/tbody/tr/td/div
我有一个Ruby程序,它使用rubyzip压缩XML文件的目录树。gem。我的问题是文件开始变得很重,我想提高压缩级别,因为压缩时间不是问题。我在rubyzipdocumentation中找不到一种为创建的ZIP文件指定压缩级别的方法。有人知道如何更改此设置吗?是否有另一个允许指定压缩级别的Ruby库? 最佳答案 这是我通过查看rubyzip内部创建的代码。level=Zlib::BEST_COMPRESSIONZip::ZipOutputStream.open(zip_file)do|zip|Dir.glob("**/*")d
类classAprivatedeffooputs:fooendpublicdefbarputs:barendprivatedefzimputs:zimendprotecteddefdibputs:dibendendA的实例a=A.new测试a.foorescueputs:faila.barrescueputs:faila.zimrescueputs:faila.dibrescueputs:faila.gazrescueputs:fail测试输出failbarfailfailfail.发送测试[:foo,:bar,:zim,:dib,:gaz].each{|m|a.send(m)resc
很好奇,就使用rubyonrails自动化单元测试而言,你们正在做什么?您是否创建了一个脚本来在cron中运行rake作业并将结果邮寄给您?git中的预提交Hook?只是手动调用?我完全理解测试,但想知道在错误发生之前捕获错误的最佳实践是什么。让我们理所当然地认为测试本身是完美无缺的,并且可以正常工作。下一步是什么以确保他们在正确的时间将可能有害的结果传达给您? 最佳答案 不确定您到底想听什么,但是有几个级别的自动代码库控制:在处理某项功能时,您可以使用类似autotest的内容获得关于哪些有效,哪些无效的即时反馈。要确保您的提
假设我做了一个模块如下:m=Module.newdoclassCendend三个问题:除了对m的引用之外,还有什么方法可以访问C和m中的其他内容?我可以在创建匿名模块后为其命名吗(就像我输入“module...”一样)?如何在使用完匿名模块后将其删除,使其定义的常量不再存在? 最佳答案 三个答案:是的,使用ObjectSpace.此代码使c引用你的类(class)C不引用m:c=nilObjectSpace.each_object{|obj|c=objif(Class===objandobj.name=~/::C$/)}当然这取决于
我正在尝试使用ruby和Savon来使用网络服务。测试服务为http://www.webservicex.net/WS/WSDetails.aspx?WSID=9&CATID=2require'rubygems'require'savon'client=Savon::Client.new"http://www.webservicex.net/stockquote.asmx?WSDL"client.get_quotedo|soap|soap.body={:symbol=>"AAPL"}end返回SOAP异常。检查soap信封,在我看来soap请求没有正确的命名空间。任何人都可以建议我
关闭。这个问题是opinion-based.它目前不接受答案。想要改进这个问题?更新问题,以便editingthispost可以用事实和引用来回答它.关闭4年前。Improvethisquestion我想在固定时间创建一系列低音和高音调的哔哔声。例如:在150毫秒时发出高音调的蜂鸣声在151毫秒时发出低音调的蜂鸣声200毫秒时发出低音调的蜂鸣声250毫秒的高音调蜂鸣声有没有办法在Ruby或Python中做到这一点?我真的不在乎输出编码是什么(.wav、.mp3、.ogg等等),但我确实想创建一个输出文件。
我在我的项目目录中完成了compasscreate.和compassinitrails。几个问题:我已将我的.sass文件放在public/stylesheets中。这是放置它们的正确位置吗?当我运行compasswatch时,它不会自动编译这些.sass文件。我必须手动指定文件:compasswatchpublic/stylesheets/myfile.sass等。如何让它自动运行?文件ie.css、print.css和screen.css已放在stylesheets/compiled。如何在编译后不让它们重新出现的情况下删除它们?我自己编译的.sass文件编译成compiled/t
我想将html转换为纯文本。不过,我不想只删除标签,我想智能地保留尽可能多的格式。为插入换行符标签,检测段落并格式化它们等。输入非常简单,通常是格式良好的html(不是整个文档,只是一堆内容,通常没有anchor或图像)。我可以将几个正则表达式放在一起,让我达到80%,但我认为可能有一些现有的解决方案更智能。 最佳答案 首先,不要尝试为此使用正则表达式。很有可能你会想出一个脆弱/脆弱的解决方案,它会随着HTML的变化而崩溃,或者很难管理和维护。您可以使用Nokogiri快速解析HTML并提取文本:require'nokogiri'h
我想为Heroku构建一个Rails3应用程序。他们使用Postgres作为他们的数据库,所以我通过MacPorts安装了postgres9.0。现在我需要一个postgresgem并且共识是出于性能原因你想要pggem。但是我对我得到的错误感到非常困惑当我尝试在rvm下通过geminstall安装pg时。我已经非常明确地指定了所有postgres目录的位置可以找到但仍然无法完成安装:$envARCHFLAGS='-archx86_64'geminstallpg--\--with-pg-config=/opt/local/var/db/postgresql90/defaultdb/po