Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
98b3cc07
Commit
98b3cc07
authored
May 16, 2013
by
Klimov Paul
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Test case "AssetControllerTest::testActionCompress()" has been created as draft.
parent
50926122
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
88 additions
and
1 deletion
+88
-1
AssetControllerTest.php
...nit/framework/console/controllers/AssetControllerTest.php
+88
-1
No files found.
tests/unit/framework/console/controllers/AssetControllerTest.php
View file @
98b3cc07
...
...
@@ -79,13 +79,100 @@ class AssetControllerTest extends TestCase
return
ob_get_clean
();
}
/**
* Creates test compress config.
* @return array config array.
*/
protected
function
createCompressConfig
()
{
$baseUrl
=
'/test'
;
$assetsBasePath
=
$this
->
testFilePath
.
DIRECTORY_SEPARATOR
.
'assets'
;
$this
->
createDir
(
$assetsBasePath
);
$config
=
array
(
'bundles'
=>
$this
->
createBundleConfig
(),
'targets'
=>
array
(
'all'
=>
array
(
'basePath'
=>
$assetsBasePath
,
'baseUrl'
=>
$baseUrl
,
'js'
=>
'all-{ts}.js'
,
'css'
=>
'all-{ts}.css'
,
),
),
'assetManager'
=>
array
(
'basePath'
=>
$assetsBasePath
,
'baseUrl'
=>
$baseUrl
,
),
);
return
$config
;
}
/**
* Creates test bundle configuration.
* @return array bundle config.
*/
protected
function
createBundleConfig
()
{
$baseUrl
=
'/test'
;
$bundles
=
array
(
'app'
=>
array
(
'basePath'
=>
$this
->
testFilePath
,
'baseUrl'
=>
$baseUrl
,
'css'
=>
array
(
'css/test.css'
,
),
'js'
=>
array
(
'js/test.js'
,
),
'depends'
=>
array
(
'yii'
,
),
),
);
return
$bundles
;
}
/**
* Creates test bundles configuration file.
* @param string $fileName output filename.
* @return boolean success.
*/
protected
function
createBundleFile
(
$fileName
)
{
$content
=
'<?php return '
.
var_export
(
$this
->
createBundleConfig
(),
true
)
.
';'
;
return
(
file_put_contents
(
$fileName
,
$content
)
>
0
);
}
/**
* Creates test compress config file.
* @param string $fileName output file name.
* @return boolean success.
*/
protected
function
createCompressConfigFile
(
$fileName
)
{
$content
=
'<?php return '
.
var_export
(
$this
->
createCompressConfig
(),
true
)
.
';'
;
return
(
file_put_contents
(
$fileName
,
$content
)
>
0
);
}
// Tests :
public
function
testActionTemplate
()
{
$configFileName
=
$this
->
testFilePath
.
DIRECTORY_SEPARATOR
.
'config.php'
;
$this
->
runAssetControllerAction
(
'template'
,
array
(
$configFileName
));
$this
->
assertTrue
(
file_exists
(
$configFileName
),
'Unable to create config file template!'
);
}
public
function
testActionCompress
()
{
$configFile
=
$this
->
testFilePath
.
DIRECTORY_SEPARATOR
.
'config.php'
;
$this
->
createCompressConfigFile
(
$configFile
);
$bundleFile
=
$this
->
testFilePath
.
DIRECTORY_SEPARATOR
.
'bundle.php'
;
$this
->
createBundleFile
(
$bundleFile
);
$this
->
runAssetControllerAction
(
'compress'
,
array
(
$configFile
,
$bundleFile
));
$this
->
markTestIncomplete
();
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment