36 lines
1.4 KiB
PHP
Executable File
36 lines
1.4 KiB
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
include dirname(dirname(dirname(__FILE__))) . '/lib/init.php';
|
|
include dirname(dirname(dirname(__FILE__))) . '/class/user.class.php';
|
|
su('admin');
|
|
|
|
$userContactList = zdTable('usercontact');
|
|
$userContactList->gen(100);
|
|
|
|
/**
|
|
|
|
title=测试 userModel::getContactLists();
|
|
cid=1
|
|
pid=1
|
|
|
|
获取user1的联系人列表,取出空对应的值 >> 联系人
|
|
获取dev2的联系人列表,判断空对应的值是否为空 >> 1
|
|
获取test3的联系人列表的总数 >> 3
|
|
获取admin的联系人列表 >> 0
|
|
获取空用户的联系人列表 >> 0
|
|
|
|
*/
|
|
|
|
$user = new userTest();
|
|
$user1ContactList = $user->getContactListsTest('user1', 'withempty|withnote');
|
|
$dev2ContactList = $user->getContactListsTest('dev2', 'withempty');
|
|
$test3ContactList = $user->getContactListsTest('test3');
|
|
$adminContactList = $user->getContactListsTest('admin');
|
|
$emptyContactList = $user->getContactListsTest('');
|
|
|
|
r($user1ContactList['']) && p() && e('联系人'); // 获取user1的联系人列表,取出空对应的值
|
|
r($dev2ContactList[''] === '') && p() && e('1'); // 获取dev2的联系人列表,判断空对应的值是否为空
|
|
r(count($test3ContactList)) && p() && e('3'); // 获取test3的联系人列表的总数
|
|
r($adminContactList) && p() && e('0'); // 获取admin的联系人列表
|
|
r($emptyContactList) && p() && e('0'); // 获取空用户的联系人列表
|