How to pass querystring to testAction in CakePHP 1.2? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T04:01:56Zhttp://stackoverflow.com/feeds/question/200925http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/200925/how-to-pass-querystring-to-testaction-in-cakephp-1-21How to pass querystring to testAction in CakePHP 1.2?Ryan Boucher2008-10-14T12:22:45Z2009-11-03T09:13:40Z
<p>In CakePHP putting a querystring in the url doesn't cause it to be automatically parsed and split like it normally is when the controller is directly invoked. </p>
<p>For example:</p>
<pre><code>$this->testAction('/testing/post?company=utCompany', array('return' => 'vars')) ;
</code></pre>
<p>will result in:</p>
<pre><code>[url] => /testing/post?company=utCompany
</code></pre>
<p>While invoking the url directly via the web browser results in:</p>
<pre><code>[url] => Array
(
[url] => testing/post
[company] => utCompany
)
</code></pre>
<p>Without editing the CakePHP source, is there some way to have the querystring split when running unit tests?</p>
http://stackoverflow.com/questions/200925/how-to-pass-querystring-to-testaction-in-cakephp-1-2/201120#2011201Answer by Ryan Boucher for How to pass querystring to testAction in CakePHP 1.2?Ryan Boucher2008-10-14T13:18:06Z2008-10-14T13:18:06Z<p>I have what is either a hack (i.e. may not work for future CakePHP releases) or an undocumented feature.</p>
<p>If the second testAction parameter includes an named array called 'url' then the values will be placed in the $this->params object in the controller. This gives us the same net result as when the controller is directly invoked.</p>
<pre><code>$data = array ('company' => 'utCompany') ;
$result = $this->testAction('/testing/post', array
(
'return' => 'vars',
'method' => 'get',
'url' => $data)
) ;
</code></pre>
<p>I'm satisfied with this method for what I need to do. I'll open the question to the community shortly so that it in the future a better answer can be provided.</p>
http://stackoverflow.com/questions/200925/how-to-pass-querystring-to-testaction-in-cakephp-1-2/201451#2014510Answer by Ryan Boucher for How to pass querystring to testAction in CakePHP 1.2?Ryan Boucher2008-10-14T14:43:16Z2008-10-14T14:43:16Z<p>CakePHP does provide some level of url splitting but it only seems to work in the run-time configuration and not the test configuration. I'll contact the CakePHP if this is intentional.</p>
<p>I suggestion for your querystring parser would be to use the PHP function <a href="http://au.php.net/manual/en/function.explode.php" rel="nofollow">explode</a>.</p>
<p>I believe you can do something like this:</p>
<pre><code>$result = explode ('&', $queryString, -1) ;
</code></pre>
<p>which would give you your key-pairs in seperate array slots upon which you can iterate and perform a second explode like so:</p>
<pre><code>$keyPair = explode ('=', $result[n], -1) ;
</code></pre>
<p>However, all this being said it would be better to peek under the hood of CakePHP and see what they are doing. </p>
<p>What I typed above won't correctly handle situations where your querystring contains html escaped characters (prefixed with &), nor will it handle hex encoded url strings.</p>
http://stackoverflow.com/questions/200925/how-to-pass-querystring-to-testaction-in-cakephp-1-2/1666150#16661500Answer by islam khalil for How to pass querystring to testAction in CakePHP 1.2?islam khalil2009-11-03T09:13:40Z2009-11-03T09:13:40Z<p>use _GET['parmname'];</p>