⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 permissionsui_test.class.php

📁 一个用PHP编写的
💻 PHP
字号:
<?php

	include_once( PLOG_CLASS_PATH."class/test/helpers/lifetypetestcase.class.php" );
	include_once( PLOG_CLASS_PATH."class/test/helpers/testtools.class.php" );	
	include_once( PLOG_CLASS_PATH."class/dao/permissions.class.php" );
	
	/**
	 * \ingroup Test
	 */
	class PermissionsUI_Test extends LifeTypeTestCase
	{
		var $user;
		var $blog;
		
		function setUp()
		{
			$this->user = TestTools::createAdminUser();
			$this->blog = TestTools::createBlog( $this->user->getId());
		}
		
		function tearDown()
		{
			TestTools::deleteDaoTestData( Array( $this->user, $this->blog ));
		}
		
		/**
		 * Test that core permissions cannot be deleted via the user interface
		 */
		function testCorePermissions()
		{
			$permName = "perm_".TestTools::getRandomWord( 20 );
			
			// login
			$this->assertUIScript(
				Array(
					"login" => Array(
						"url" => $this->getAdminUrl(),
						"type" => "post",
						"params" => Array(
							"userName" => $this->user->getUserName(),
							"userPassword" => "password",
							"op" => "Login"
						),
						"expected" => "Dashboard",
						"message" => "The dashboard did not appear when logging in"
					 ),
					"select_blog" => Array(
						"url" => $this->getAdminUrl(),
						"type" => "get",
						"params" => Array(
							"op" => "blogSelect",
							"blogId" => $this->blog->getId()
						),
						"expected" => "New Post",
						"message" => "The blog could not be selected after the dashboard"
					)
				)
			);
			
			// go the "new permission" page and add a new one
			$this->assertUIScript(
				Array(			
					"new_permission" => Array(
						"url" => $this->getAdminUrl(),
						"type" => "get",
						"params" => Array( "op" => "newPermission" ),
						"expected" => "Unique name for the new permission",
						"message" => "The form to input a new permission was not successfully displayed"						
					),
					"create_permission" => Array(
						"url" => $this->getAdminUrl(),
						"type" => "post",
						"params" => Array( "permissionName" => $permName, "permissionDescription" => "$permName description", "corePermission" => "1", "op" => "addPermission" ),
						"expected" => "Permission added",
						"message" => "The test permission was not successully added"
					)
				)
			);
			
			// find the category in the db...
			$perms = new Permissions();
			$perm = $perms->getPermissionByName( $permName );
			
			if( !$perm ) {
				die("FATAL: The permission was not successfully added and the test cannot continue" );
			}
			
			// ...and delete it via the UI
			$this->assertUIScript(
				Array(
					"delete_permission" => Array(
						"url" => $this->getAdminUrl(),
						"type" => "get",
						"params" => Array( "permId" => $perm->getId(), "op" => "deletePermission" ),
						"expected" => "Permission \"".$perm->getName()."\" cannot be deleted",
						"message" => "The user interface allowed to delete a core permission!"
					)					
				)
			);
			
			// delete the permission via the API
			$perms->deletePermission( $perm->getId());
		}
		
		/**
		 * Test permissions
		 */
		function testPermissions()
		{
			$permName = "perm_".TestTools::getRandomWord( 20 );
			
			// login
			$this->assertUIScript(
				Array(
					"login" => Array(
						"url" => $this->getAdminUrl(),
						"type" => "post",
						"params" => Array(
							"userName" => $this->user->getUserName(),
							"userPassword" => "password",
							"op" => "Login"
						),
						"expected" => "Dashboard",
						"message" => "The dashboard did not appear when logging in"
					 ),
					"select_blog" => Array(
						"url" => $this->getAdminUrl(),
						"type" => "get",
						"params" => Array(
							"op" => "blogSelect",
							"blogId" => $this->blog->getId()
						),
						"expected" => "New Post",
						"message" => "The blog could not be selected after the dashboard"
					)
				)
			);
			
			// go the "new permission" page and add a new one
			$this->assertUIScript(
				Array(			
					"new_permission" => Array(
						"url" => $this->getAdminUrl(),
						"type" => "get",
						"params" => Array( "op" => "newPermission" ),
						"expected" => "Unique name for the new permission",
						"message" => "The form to input a new permission was not successfully displayed"						
					),
					"create_permission" => Array(
						"url" => $this->getAdminUrl(),
						"type" => "post",
						"params" => Array( "permissionName" => $permName, "permissionDescription" => "$permName description", "adminOnlyPermission" => "1", "op" => "addPermission" ),
						"expected" => "Permission added",
						"message" => "The test permission was not successully added"
					)
				)
			);
			
			// find the category in the db...
			$perms = new Permissions();
			$perm = $perms->getPermissionByName( $permName );
			
			if( !$perm ) {
				die("FATAL: The permission was not successfully added and the test cannot continue" );
			}
			
			// ...and delete it via the UI
			$this->assertUIScript(
				Array(
					"delete_permission" => Array(
						"url" => $this->getAdminUrl(),
						"type" => "get",
						"params" => Array( "permId" => $perm->getId(), "op" => "deletePermission" ),
						"expected" => "Permission \"".$perm->getName()."\" was deleted",
						"message" => "The permission was not deleted!"
					),
					"delete_permission_again" => Array(
						"url" => $this->getAdminUrl(),
						"type" => "get",
						"params" => Array( "permId" => $perm->getId(), "op" => "deletePermission" ),
						"expected" => "There was an error deleting permission",
						"message" => "The user interface allowed to delete the test permission twice"
					)										
				)
			);
		}		
	}
?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -