How to pass querystring to testAction in CakePHP 1.2? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T04:01:56Z http://stackoverflow.com/feeds/question/200925 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/200925/how-to-pass-querystring-to-testaction-in-cakephp-1-2 1 How to pass querystring to testAction in CakePHP 1.2? Ryan Boucher 2008-10-14T12:22:45Z 2009-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-&gt;testAction('/testing/post?company=utCompany', array('return' =&gt; 'vars')) ; </code></pre> <p>will result in:</p> <pre><code>[url] =&gt; /testing/post?company=utCompany </code></pre> <p>While invoking the url directly via the web browser results in:</p> <pre><code>[url] =&gt; Array ( [url] =&gt; testing/post [company] =&gt; 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#201120 1 Answer by Ryan Boucher for How to pass querystring to testAction in CakePHP 1.2? Ryan Boucher 2008-10-14T13:18:06Z 2008-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' =&gt; 'utCompany') ; $result = $this-&gt;testAction('/testing/post', array ( 'return' =&gt; 'vars', 'method' =&gt; 'get', 'url' =&gt; $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#201451 0 Answer by Ryan Boucher for How to pass querystring to testAction in CakePHP 1.2? Ryan Boucher 2008-10-14T14:43:16Z 2008-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 ('&amp;', $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 &amp;), 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#1666150 0 Answer by islam khalil for How to pass querystring to testAction in CakePHP 1.2? islam khalil 2009-11-03T09:13:40Z 2009-11-03T09:13:40Z <p>use _GET['parmname'];</p>