ZF-7065: Swap position of TESTS_ZEND_GDATA_YOUTUBE_ONLINE_ENABLED and
[zend.git] / tests / TestConfiguration.php.dist
blob7b41a6bb35ff31c02b3ff2866ca57ad3273c5750
1 <?php
3 /**
4  * Zend Framework
5  *
6  * LICENSE
7  *
8  * This source file is subject to the new BSD license that is bundled
9  * with this package in the file LICENSE.txt.
10  * It is also available through the world-wide-web at this URL:
11  * http://framework.zend.com/license/new-bsd
12  * If you did not receive a copy of the license and are unable to
13  * obtain it through the world-wide-web, please send an email
14  * to license@zend.com so we can send you a copy immediately.
15  *
16  * @category   Zend
17  * @package    UnitTests
18  * @copyright  Copyright (c) 2005-2008 Zend Technologies USA Inc. (http://www.zend.com)
19  * @license    http://framework.zend.com/license/new-bsd     New BSD License
20  * @version    $Id$
21  */
23 /**
24  * This file defines configuration for running the unit tests for the Zend
25  * Framework.  Some tests have dependencies to PHP extensions or databases
26  * which may not necessary installed on the target system.  For these cases,
27  * the ability to disable or configure testing is provided below.  Tests for
28  * components which should run universally are always run by the master
29  * suite and cannot be disabled.
30  *
31  * Do not edit this file. Instead, copy this file to TestConfiguration.php,
32  * and edit the new file. Never commit plaintext passwords to the source
33  * code repository.
34  */
36 /**
37  * Zend_Auth_Adapter_DbTable tests
38  */
39 define('TESTS_ZEND_AUTH_ADAPTER_DBTABLE_PDO_SQLITE_ENABLED', false);
40 define('TESTS_ZEND_AUTH_ADAPTER_DBTABLE_PDO_SQLITE_DATABASE', ':memory:');
42 /**
43  * Zend_Auth_Adapter_Ldap online tests
44  * (See also TESTS_ZEND_LDAP_* configuration constants below)
45  */
46 define('TESTS_ZEND_AUTH_ADAPTER_LDAP_ONLINE_ENABLED', false);
48 /**
49  * Zend_Cache
50  *
51  * TESTS_ZEND_CACHE_SQLITE_ENABLED    => sqlite extension has to be enabled
52  * TESTS_ZEND_CACHE_APC_ENABLED       => apc extension has to be enabled
53  * TESTS_ZEND_CACHE_MEMCACHED_ENABLED => memcache extension has to be enabled and
54  *                                       a memcached server has to be available
55  * TESTS_ZEND_CACHE_XCACHE_ENABLED    => xcache extension has to be enabled
56  */
57 define('TESTS_ZEND_CACHE_SQLITE_ENABLED', false);
58 define('TESTS_ZEND_CACHE_APC_ENABLED', false);
59 define('TESTS_ZEND_CACHE_XCACHE_ENABLED', true);
60 define('TESTS_ZEND_CACHE_XCACHE_USER', null);
61 define('TESTS_ZEND_CACHE_XCACHE_PASSWORD', null);
62 define('TESTS_ZEND_CACHE_PLATFORM_ENABLED', false);
63 define('TESTS_ZEND_CACHE_MEMCACHED_ENABLED', false);
64 define('TESTS_ZEND_CACHE_MEMCACHED_HOST', '127.0.0.1');
65 define('TESTS_ZEND_CACHE_MEMCACHED_PORT', 11211);
66 define('TESTS_ZEND_CACHE_MEMCACHED_PERSISTENT', true);
68 /**
69  * Zend_Controller
70  *
71  * TESTS_ZEND_CONTROLLER_DISPATCHER_OB => test disabling output buffering in
72  *                                        dispatcher
73  */
74 define('TESTS_ZEND_CONTROLLER_DISPATCHER_OB', false);
76 /**
77  * Zend_Db_Adapter_Pdo_Mysql and Zend_Db_Adapter_Mysqli
78  *
79  * There are separate properties to enable tests for the PDO_MYSQL adapter and
80  * the native Mysqli adapters, but the other properties are shared between the
81  * two MySQL-related Zend_Db adapters.
82  */
83 define('TESTS_ZEND_DB_ADAPTER_PDO_MYSQL_ENABLED',  false);
84 define('TESTS_ZEND_DB_ADAPTER_MYSQLI_ENABLED',  false);
85 define('TESTS_ZEND_DB_ADAPTER_MYSQL_HOSTNAME', '127.0.0.1');
86 define('TESTS_ZEND_DB_ADAPTER_MYSQL_USERNAME', null);
87 define('TESTS_ZEND_DB_ADAPTER_MYSQL_PASSWORD', null);
88 define('TESTS_ZEND_DB_ADAPTER_MYSQL_DATABASE', 'test');
89 define('TESTS_ZEND_DB_ADAPTER_MYSQL_PORT', 3306);
91 /**
92  * Zend_Db_Adapter_Pdo_Sqlite
93  *
94  * Username and password are irrelevant for SQLite.
95  */
96 define('TESTS_ZEND_DB_ADAPTER_PDO_SQLITE_ENABLED',  false);
97 define('TESTS_ZEND_DB_ADAPTER_PDO_SQLITE_DATABASE', ':memory:');
99 /**
100  * Zend_Db_Adapter_Pdo_Mssql
102  * Note that you need to patch your ntwdblib.dll, the one that
103  * comes with PHP does not work.  See user comments at
104  * http://us2.php.net/manual/en/ref.mssql.php
105  */
106 define('TESTS_ZEND_DB_ADAPTER_PDO_MSSQL_ENABLED',  false);
107 define('TESTS_ZEND_DB_ADAPTER_PDO_MSSQL_HOSTNAME', '127.0.0.1');
108 define('TESTS_ZEND_DB_ADAPTER_PDO_MSSQL_USERNAME', null);
109 define('TESTS_ZEND_DB_ADAPTER_PDO_MSSQL_PASSWORD', null);
110 define('TESTS_ZEND_DB_ADAPTER_PDO_MSSQL_DATABASE', 'test');
113  * Zend_Db_Adapter_Pdo_Pgsql
114  */
115 define('TESTS_ZEND_DB_ADAPTER_PDO_PGSQL_ENABLED',  false);
116 define('TESTS_ZEND_DB_ADAPTER_PDO_PGSQL_HOSTNAME', '127.0.0.1');
117 define('TESTS_ZEND_DB_ADAPTER_PDO_PGSQL_USERNAME', null);
118 define('TESTS_ZEND_DB_ADAPTER_PDO_PGSQL_PASSWORD', null);
119 define('TESTS_ZEND_DB_ADAPTER_PDO_PGSQL_DATABASE', 'postgres');
122  * Zend_Db_Adapter_Oracle and Zend_Db_Adapter_Pdo_Oci
124  * There are separate properties to enable tests for the PDO_OCI adapter and
125  * the native Oracle adapter, but the other properties are shared between the
126  * two Oracle-related Zend_Db adapters.
127  */
128 define('TESTS_ZEND_DB_ADAPTER_PDO_OCI_ENABLED',  false);
129 define('TESTS_ZEND_DB_ADAPTER_ORACLE_ENABLED',  false);
130 define('TESTS_ZEND_DB_ADAPTER_ORACLE_HOSTNAME', '127.0.0.1');
131 define('TESTS_ZEND_DB_ADAPTER_ORACLE_USERNAME', null);
132 define('TESTS_ZEND_DB_ADAPTER_ORACLE_PASSWORD', null);
133 define('TESTS_ZEND_DB_ADAPTER_ORACLE_SID',      'xe');
136  * Zend_Db_Adapter_Db2 and Zend_Db_Adapter_Pdo_Ibm
137  * There are separate properties to enable tests for the PDO_IBM adapter and
138  * the native DB2 adapter, but the other properties are shared between the
139  * two related Zend_Db adapters.
140  */
141 define('TESTS_ZEND_DB_ADAPTER_PDO_IBM_ENABLED',  false);
142 define('TESTS_ZEND_DB_ADAPTER_DB2_ENABLED',  false);
143 define('TESTS_ZEND_DB_ADAPTER_DB2_HOSTNAME', '127.0.0.1');
144 define('TESTS_ZEND_DB_ADAPTER_DB2_PORT', 50000);
145 define('TESTS_ZEND_DB_ADAPTER_DB2_USERNAME', null);
146 define('TESTS_ZEND_DB_ADAPTER_DB2_PASSWORD', null);
147 define('TESTS_ZEND_DB_ADAPTER_DB2_DATABASE', 'sample');
150  * Zend_Http_Client tests
152  * To enable the dynamic Zend_Http_Client tests, you will need to symbolically
153  * link or copy the files in tests/Zend/Http/Client/_files to a directory
154  * under your web server(s) document root and set this constant to point to the
155  * URL of this directory.
156  */
157 define('TESTS_ZEND_HTTP_CLIENT_BASEURI', false);
160  * Zend_Http_Client_Proxy tests
162  * HTTP proxy to be used for testing the Proxy adapter. Set to a string of
163  * the form 'host:port'. Set to null to skip HTTP proxy tests.
164  */
165 define('TESTS_ZEND_HTTP_CLIENT_HTTP_PROXY', false);
166 define('TESTS_ZEND_HTTP_CLIENT_HTTP_PROXY_USER', '');
167 define('TESTS_ZEND_HTTP_CLIENT_HTTP_PROXY_PASS', '');
170  * Zend_Gdata tests
172  * If the ONLINE_ENABLED property is false, only tests that can be executed with
173  * a mock HTTP client are run.  No request is sent to the Google Gdata servers.
174  * If ONLINE_ENABLED is true, some tests may make requests to the remote
175  * servers.  This does not work if you are running tests on a disconnected
176  * client host.  Also, the tests may show as failures if the Google servers
177  * cannot be reached or if they do not respond for another reason.
179  * If the CLIENTLOGIN_ENABLED property below is false, the authenticated
180  * tests are reported Skipped in the test run.  Set this property to true
181  * to enable tests that require ClientLogin authentication.  Enter your
182  * Google login credentials in the EMAIL and PASSWORD properties below.
184  * Edit TestConfiguration.php, not TestConfiguration.php.dist.
185  * Never commit plaintext passwords to the source code repository.
187  * Note: the GData tests currently require that the TZID env variable
188  * be set or the timezone otherwise configured.  You'll see errors from the
189  * tests if this is not the case.
190  */
191 define('TESTS_ZEND_GDATA_ONLINE_ENABLED', false);
192 define('TESTS_ZEND_GDATA_CLIENTLOGIN_ENABLED', false);
195  * The credentials provided here should be only for a TEST account.
196  * Data for various services in this account may be added to, updated,
197  * or deleted based upon the actions of these test accounts.
198  */
199 define('TESTS_ZEND_GDATA_CLIENTLOGIN_EMAIL', 'example@example.com');
200 define('TESTS_ZEND_GDATA_CLIENTLOGIN_PASSWORD', 'password');
203  * This is the ID of a blank blog.  There is no need to have
204  * any content in this blog.  Also, blogs can only be used
205  * several times for the purpose of these test cases before
206  * they must be deleted and recreated.  Otherwise, the tests
207  * will start failing, as posts to Blogger will return a 201 Created
208  * response even though the entry was not posted to the blog.
209  * This problem is being investigated.
210  */
211 define('TESTS_ZEND_GDATA_BLOGGER_ONLINE_ENABLED', false);
212 define('TESTS_ZEND_GDATA_BLOG_ID', '1111111111111111111');
215  * This is the key for a spreadsheet with data only in the first row of
216  * the spreadsheet.  The strings 'a1', 'b1', 'c1', 'd1' should be in the
217  * corresponding cell locations.
218  */
219 define('TESTS_ZEND_GDATA_SPREADSHEETS_ONLINE_ENABLED', false);
220 define('TESTS_ZEND_GDATA_SPREADSHEETS_SPREADSHEETKEY', 'o01111111111111111111.1111111111111111111');
221 define('TESTS_ZEND_GDATA_SPREADSHEETS_WORKSHEETID', 'default');
224  * This indicates that online tests for the Google Calendar API should
225  * be performed. The default calendar will be used.
226  */
227 define('TESTS_ZEND_GDATA_CALENDAR_ONLINE_ENABLED', false);
230  * This is the fully-qualified domain name for a domiain hosted using
231  * Google Apps. This domain must be registered with Google Apps and
232  * have API access enabled.  This should be a TEST domain only.
233  */
234 define('TESTS_ZEND_GDATA_GAPPS_ONLINE_ENABLED', false);
235 define('TESTS_ZEND_GDATA_GAPPS_DOMAIN', 'example.com.invalid');
236 define('TESTS_ZEND_GDATA_GAPPS_EMAIL', 'example@example.com');
237 define('TESTS_ZEND_GDATA_GAPPS_PASSWORD', 'password');
240  * This is the ONLINE_ENABLED property for Google Base.
241  */
242 define('TESTS_ZEND_GDATA_GBASE_ONLINE_ENABLED', false);
245  * This indicates that online tests for the Books Search data API
246  * should be performed.
247  */
248 define('TESTS_ZEND_GDATA_BOOKS_ONLINE_ENABLED', false);
251  * This indicates that online tests for the YouTube data API should
252  * be performed.
253  */
254 define('TESTS_ZEND_GDATA_YOUTUBE_ONLINE_ENABLED', false);
257  * This is the username to use for retrieving subscriptions, etc
258  */
259 define('TESTS_ZEND_GDATA_YOUTUBE_ACCOUNT', 'zfgdata');
262  * This is the developer key to access the YouTube API
263  */
264 define('TESTS_ZEND_GDATA_YOUTUBE_DEVELOPER_KEY', 'your_developer_key_here');
267  * This is the client ID to access the YouTube API
268  */
269 define('TESTS_ZEND_GDATA_YOUTUBE_CLIENT_ID', 'ZF_UnitTests_unknown');
272  * This indicates that online tests for the Google Documents API should
273  * be performed.
274  */
275 define('TESTS_ZEND_GDATA_DOCS_ONLINE_ENABLED', false);
278  * This indicates that online tests for the GData Photos API should
279  * be performed.
280  */
281 define('TESTS_ZEND_GDATA_PHOTOS_ONLINE_ENABLED', false);
284  * This indicates that online tests for the Google Health API should
285  * be performed.
286  */
287 define('TESTS_ZEND_GDATA_HEALTH_ONLINE_ENABLED', false);
290  * Zend_Date tests
292  * If the BCMATH_ENABLED property below is false, all arithmetic
293  * operations will use ordinary PHP math operators and functions.
294  * Otherwise, the bcmath functions will be used for unlimited precision.
296  * If the EXTENDED_COVERAGE property below is false, most of the I18N
297  * unit tests will not be computed... this speeds tests up to 80 minutes
298  * when doing reports. *
299  * Edit TestConfiguration.php, not TestConfiguration.php.dist.
300  */
301 define('TESTS_ZEND_LOCALE_BCMATH_ENABLED', true);
302 define('TESTS_ZEND_I18N_EXTENDED_COVERAGE', true);
305  * Zend_Ldap online tests
306  */
307 define('TESTS_ZEND_LDAP_ONLINE_ENABLED', false);
309 /* These largely map to the options described in the Zend_Ldap and
310  * Zend_Auth_Adapter_Ldap documentation.
312  * Example Configuration for Active Directory:
313  *                      HOST: dc1.w.net
314  *             USE_START_TLS: true
315  *                   USE_SSL: false
316  *                  USERNAME: CN=User 1,CN=Users,DC=w,DC=net
317  *            PRINCIPAL_NAME: user1@w.net
318  *             LDAP_PASSWORD: pass1
319  *                   BASE_DN: CN=Users,DC=w,DC=net
320  *               DOMAIN_NAME: w.net
321  * ACCOUNT_DOMAIN_NAME_SHORT: W
322  *              ALT_USERNAME: user2
323  *                    ALT_DN: CN=User 2,CN=Users,DC=w,DC=net
324  *              ALT_PASSWORD: pass2
326  * Example Configuration for OpenLDAP
327  *                      HOST: s0.foo.net
328  *                  USERNAME: CN=user1,DC=foo,DC=net
329  *            PRINCIPAL_NAME: user1@foo.net
330  *             LDAP_PASSWORD: pass1
331  *          BIND_REQUIRES_DN: true
332  *                   BASE_DN: OU=Sales,DC=w,DC=net
333  *               DOMAIN_NAME: foo.net
334  * ACCOUNT_DOMAIN_NAME_SHORT: FOO
335  *              ALT_USERNAME: abaker
336  *                    ALT_DN: CN=Alice Baker,OU=Sales,DC=foo,DC=net
337  *              ALT_PASSWORD: apass
338  */
339 define('TESTS_ZEND_LDAP_HOST', 'localhost');
340 //define('TESTS_ZEND_LDAP_PORT', 389);
341 define('TESTS_ZEND_LDAP_USE_START_TLS', true);
342 //define('TESTS_ZEND_LDAP_USE_SSL', false);
343 define('TESTS_ZEND_LDAP_USERNAME', 'CN=someUser,DC=example,DC=com');
344 define('TESTS_ZEND_LDAP_PRINCIPAL_NAME', 'someUser@example.com');
345 define('TESTS_ZEND_LDAP_PASSWORD', null);
346 define('TESTS_ZEND_LDAP_BIND_REQUIRES_DN', true);
347 define('TESTS_ZEND_LDAP_BASE_DN', 'OU=Sales,DC=example,DC=com');
348 //define('TESTS_ZEND_LDAP_ACCOUNT_FILTER_FORMAT', '(&(objectClass=posixAccount)(uid=%s))');
349 define('TESTS_ZEND_LDAP_ACCOUNT_DOMAIN_NAME', 'example.com');
350 define('TESTS_ZEND_LDAP_ACCOUNT_DOMAIN_NAME_SHORT', 'EXAMPLE');
351 define('TESTS_ZEND_LDAP_ALT_USERNAME', 'anotherUser');
352 define('TESTS_ZEND_LDAP_ALT_DN', 'CN=Another User,OU=Sales,DC=example,DC=com');
353 define('TESTS_ZEND_LDAP_ALT_PASSWORD', null);
356  * Zend_Locale tests
358  * If the TESTS_ZEND_LOCALE_FORMAT_SETLOCALE property below is a valid,
359  * locally recognized locale (try "locale -a"), then all tests in
360  * tests/Zend/Locale/ test suites will execute *after*
361  *    setlocale(LC_ALL, TESTS_ZEND_LOCALE_FORMAT_SETLOCALE);
362  * Primarily, this switches certain PHP functions to emit "localized" output,
363  * including the built-in "to string" for integer and float conversions.
364  * Thus, a locale of 'fr_FR' yields number-to-string conversions in a
365  * localized form with the decimal place separator chosen via:
366  *    setlocale(LC_ALL, 'fr_FR@euro');
367  */
368 //define('TESTS_ZEND_LOCALE_FORMAT_SETLOCALE', 'fr');
369 //define('TESTS_ZEND_LOCALE_FORMAT_SETLOCALE', 'fr_FR@euro');
370 define('TESTS_ZEND_LOCALE_FORMAT_SETLOCALE', false);
373  * Zend_Mail_Storage tests
375  * TESTS_ZEND_MAIL_SERVER_TESTDIR and TESTS_ZEND_MAIL_SERVER_FORMAT are used for POP3 and IMAP tests.
376  * TESTS_ZEND_MAIL_SERVER_FORMAT is the format your test mail server uses: 'mbox' or 'maildir'. The mail
377  * storage for the user specified in your POP3 or IMAP tests should be TESTS_ZEND_MAIL_SERVER_TESTDIR. Be
378  * careful: it's cleared before copying the files. If you want to copy the files manually set the dir
379  * to null (or anything == null).
381  * TESTS_ZEND_MAIL_TEMPDIR is used for testing write operations in local storages. If not set (== null)
382  * tempnam() is used.
383  */
384 define('TESTS_ZEND_MAIL_SERVER_TESTDIR', null);
385 define('TESTS_ZEND_MAIL_SERVER_FORMAT', 'mbox');
386 define('TESTS_ZEND_MAIL_TEMPDIR', null);
389  * Zend_Mail_Storage_Pop3 / Zend_Mail_Transport_Pop3
391  * IMPORTANT: you need to copy tests/Zend/Mail/_files/test.mbox to your mail
392  * if you haven't set TESTS_ZEND_MAIL_SERVER_TESTDIR
393  */
394 define('TESTS_ZEND_MAIL_POP3_ENABLED', false);
395 define('TESTS_ZEND_MAIL_POP3_HOST', 'localhost');
396 define('TESTS_ZEND_MAIL_POP3_USER', 'test');
397 define('TESTS_ZEND_MAIL_POP3_PASSWORD', '');
398 // test SSL connections if enabled in your test server
399 define('TESTS_ZEND_MAIL_POP3_SSL', true);
400 define('TESTS_ZEND_MAIL_POP3_TLS', true);
401 // WRONG_PORT should be an existing server port,
402 // INVALID_PORT should be a non existing (each on defined host)
403 define('TESTS_ZEND_MAIL_POP3_WRONG_PORT', 80);
404 define('TESTS_ZEND_MAIL_POP3_INVALID_PORT', 3141);
407  * Zend_Mail_Storage_Imap / Zend_Mail_Transport_Imap
409  * IMPORTANT: you need to copy tests/Zend/Mail/_files/test.mbox to your mail
410  * if you haven't set TESTS_ZEND_MAIL_SERVER_TESTDIR
411  */
412 define('TESTS_ZEND_MAIL_IMAP_ENABLED', false);
413 define('TESTS_ZEND_MAIL_IMAP_HOST', 'localhost');
414 define('TESTS_ZEND_MAIL_IMAP_USER', 'test');
415 define('TESTS_ZEND_MAIL_IMAP_PASSWORD', '');
416 // test SSL connections if enabled in your test server
417 define('TESTS_ZEND_MAIL_IMAP_SSL', true);
418 define('TESTS_ZEND_MAIL_IMAP_TLS', true);
419 // WRONG_PORT should be an existing server port,
420 // INVALID_PORT should be a non-existing (each on defined host)
421 define('TESTS_ZEND_MAIL_IMAP_WRONG_PORT', 80);
422 define('TESTS_ZEND_MAIL_IMAP_INVALID_PORT', 3141);
426  * Zend_Mail_Storage_Maildir test
428  * Before enabling this test you have to unpack messages.tar in
429  * Zend/Mail/_files/test.maildir/cur/ and remove the tar for this test to work.
430  * That's because the messages files have a colon in the filename and that's a
431  * forbidden character on Windows.
432  */
433 define('TESTS_ZEND_MAIL_MAILDIR_ENABLED', false);
436  * Zend_Mail_Transport_Smtp
438  * @todo TO be implemented
439  */
440 define('TESTS_ZEND_MAIL_SMTP_ENABLED', false);
441 define('TESTS_ZEND_MAIL_SMTP_HOST', 'localhost');
442 define('TESTS_ZEND_MAIL_SMTP_PORT', 25);
443 define('TESTS_ZEND_MAIL_SMTP_USER', 'testuser');
444 define('TESTS_ZEND_MAIL_SMTP_PASSWORD', 'testpassword');
445 define('TESTS_ZEND_MAIL_SMTP_AUTH', false);
446 // AUTH can be set to false or a string of AUTH method (e.g. LOGIN, PLAIN, CRAMMD5 or DIGESTMD5)
449  * Zend_Service_Amazon online tests
450  */
451 define('TESTS_ZEND_SERVICE_AMAZON_ONLINE_ENABLED', false);
452 define('TESTS_ZEND_SERVICE_AMAZON_ONLINE_ACCESSKEYID', 'Enter AWSAccessKeyId here');
453 define('TESTS_ZEND_SERVICE_AMAZON_ONLINE_SECRETKEY', 'Enter AWSSecretKey here');
454 define('TESTS_ZEND_SERVICE_AMAZON_S3_BUCKET', 'zftestamazons3bucket');
457  * Zend_Service_Delicious tests
458  */
459 define('TESTS_ZEND_SERVICE_DELICIOUS_ENABLED', false);
462  * Zend_Service_Flickr online tests
463  */
464 define('TESTS_ZEND_SERVICE_FLICKR_ONLINE_ENABLED', false);
465 define('TESTS_ZEND_SERVICE_FLICKR_ONLINE_APIKEY', 'Enter API key here');
468  * Zend_Service_Simpy tests
469  */
470 define('TESTS_ZEND_SERVICE_SIMPY_ENABLED', false);
471 define('TESTS_ZEND_SERVICE_SIMPY_USERNAME', 'syapizend');
472 define('TESTS_ZEND_SERVICE_SIMPY_PASSWORD', 'mgt37ge');
475  * Zend_Service_SlideShare tests
476  */
477 define('TESTS_ZEND_SERVICE_SLIDESHARE_USERNAME', '');
478 define('TESTS_ZEND_SERVICE_SLIDESHARE_PASSWORD', '');
479 define('TESTS_ZEND_SERVICE_SLIDESHARE_SHAREDSECRET', '');
480 define('TESTS_ZEND_SERVICE_SLIDESHARE_APIKEY', '');
482 // The slide show ID to retrieve during tests
483 define('TESTS_ZEND_SERVICE_SLIDESHARE_SLIDESHOWID', 0);
485 // The tag to retrieve during tests
486 define('TESTS_ZEND_SERVICE_SLIDESHARE_TAG', 'zend');
488 // The group to retrieve during tests
489 define('TESTS_ZEND_SERVICE_SLIDESHARE_GROUP', '');
492  * Zend_Service_Yahoo online tests
493  */
494 define('TESTS_ZEND_SERVICE_YAHOO_ONLINE_ENABLED', false);
495 define('TESTS_ZEND_SERVICE_YAHOO_ONLINE_APPID', 'Enter APPID here');
498  * Zend_Service_ReCaptcha tests
499  */
500 define('TESTS_ZEND_SERVICE_RECAPTCHA_ENABLED', false);
501 define('TESTS_ZEND_SERVICE_RECAPTCHA_ONLINE_ENABLED', false);
502 define('TESTS_ZEND_SERVICE_RECAPTCHA_PUBLIC_KEY', 'public key');
503 define('TESTS_ZEND_SERVICE_RECAPTCHA_PRIVATE_KEY', 'private key');
504 define('TESTS_ZEND_SERVICE_RECAPTCHA_MAILHIDE_PUBLIC_KEY', 'public mailhide key');
505 define('TESTS_ZEND_SERVICE_RECAPTCHA_MAILHIDE_PRIVATE_KEY', 'private mailhide key');
508  * Zend_Soap_AutoDiscover scenario tests for complex objects and wsdl generation
510  * Copy all the files of zf/tests/Zend/Soap/_files/fulltests into a directory
511  * that can be reached by webserver and enter the base uri to this directory
512  * into the variable. The test "Zend_Soap_AutoDiscover_OnlineTest" makes use
513  * of the servers and AutoDiscover feature.
515  * NOTE: Make sure the servers are using the correct Zend Framework copy,
516  * when having more than one version installed and include paths are changing.
517  */
518 define('TESTS_ZEND_SOAP_AUTODISCOVER_ONLINE_SERVER_BASEURI', false);
521  * PHPUnit Code Coverage / Test Report
522  */
523 define('TESTS_GENERATE_REPORT', false);
524 define('TESTS_GENERATE_REPORT_TARGET', '/path/to/target');