28 lines
643 B
PHP
Executable File
28 lines
643 B
PHP
Executable File
#!/usr/bin/env php
|
|
<?php
|
|
include dirname(__FILE__, 5) . '/test/lib/init.php';
|
|
include dirname(__FILE__, 2) . '/lib/repo.unittest.class.php';
|
|
su('admin');
|
|
|
|
/**
|
|
|
|
title=测试 repoModel->markSynced();
|
|
timeout=0
|
|
cid=1
|
|
|
|
- 更新代码库1属性synced @1
|
|
- 更新不存在代码库属性synced @0
|
|
|
|
*/
|
|
|
|
$repo = zenData('repo')->loadYaml('repo');
|
|
$repo->synced->range('0');
|
|
$repo->gen(4);
|
|
zenData('repohistory')->loadYaml('repohistory')->gen(4);
|
|
|
|
$repo = new repoTest();
|
|
|
|
$repoID = 1;
|
|
|
|
r($repo->markSyncedTest($repoID)) && p('synced') && e('1'); //更新代码库1
|
|
r($repo->markSyncedTest(10001)) && p('synced') && e('0'); //更新不存在代码库
|