真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

PowerShellPester使用-Assertion-創(chuàng)新互聯(lián)

豆子之前初步了解了Pester的基本功能,今天繼續(xù)看看。Pester里面有個很重要的概念叫 assertion (斷言),他的作用是通過Should這個關(guān)鍵字 (function)來定義預(yù)測應(yīng)該出現(xiàn)的結(jié)果。

目前創(chuàng)新互聯(lián)公司已為成百上千家的企業(yè)提供了網(wǎng)站建設(shè)、域名、虛擬主機、網(wǎng)站改版維護、企業(yè)網(wǎng)站設(shè)計、凌源網(wǎng)站維護等服務(wù),公司將堅持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長,共同發(fā)展。

這個shoud后面的操作符有以下幾種

  • Be

  • BeExactly

  • BeGreaterThan

  • BeLessThan

  • BeLike

  • BeLikeExactly

  • BeOfType

  • Exist

  • Contain

  • ContainExactly

  • Match

  • MatchExactly

  • Throw

  • BeNullOrEmpty

下面這個鏈接有相關(guān)的wiki說明,有興趣的可以看看

https://github.com/pester/Pester/wiki/Should

這些關(guān)鍵字操作符從名字都能猜的出是干啥的,下面給幾個實例看看怎么用。

比如在一個test.ps1里面寫一個簡單求和功能

function add {
param(
[int]$a,
[int]$b
)
$sum=$a+$b
$sum
}

對應(yīng)的test.tests.ps1 里面這么寫

$here = Split-Path -Parent $MyInvocation.MyCommand.Path
$sut = (Split-Path -Leaf $MyInvocation.MyCommand.Path) -replace '\.Tests\.', '.'
. "$here\$sut"

Describe "Test" {

#Shoud Be 比較結(jié)果是否一樣,不區(qū)分大小寫
Context "Should be test"{
    It "Add 1 and 2 is equal to 3" {
        add 1 2 | Should Be 3
    }
      It "Add -1 and 2 is not equal to 0" {
        add -1 2 | Should not Be 0
    }
}

#should be Exactly 比較結(jié)果是否一樣,區(qū)分大小寫
Context "Should BeExactly test"{
    It "HostName" {
        hostname | Should beexactly "yli-ise"
    }

}

#Should BeGreaterThan判斷得到的結(jié)果是否比預(yù)定值大
Context "Should BeGreaterThan test"{
    It "PsVersion is above 3" {
        $PSVersionTable.PSVersion.Major | Should beGreaterThan 3
    }

}

#Should beoftype判斷結(jié)果類型是否為指定類型
Context "Should beOfType test"{
    It "Get-ADUser type"{
        Get-aduser yli | Should beoftype Microsoft.ActiveDirectory.Management.ADUser
    }

}

#Should Exist判斷文件是否存在
Context "Should Exist test"{
    It "C:\temp exist"{
        "c:\temp" | should exist
    }
     
}


#Should match 判斷結(jié)果是否匹配正則表達式, 不區(qū)分大小寫

Context "Should match test"{
    It "Find Email"{
        "jksjsjsjssdjs abc.xyz@yahoo.com hsosofs" | should match "[a-z0-9!#\$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#\$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?"
    }
     
}


#Should Throw 判斷script block結(jié)果是否拋出異常
Context "Should Throw test" {
    It "Get a non-exist Process"{ 
    
        {Get-Process -Name "!@#$%&" -ErrorAction Stop} | Should Throw
    }
}


#Should BeNulorEmpty 判斷結(jié)果是否為空
Context "Should BeNullorEmpty test"{
    It "Get something from test folder"{
    
        get-childitem C:\temp | should not benullorempty
    }


}


}

直接運行這個測試文件或者通過Invoke-pester執(zhí)行,看看結(jié)果 成功

PowerShell Pester 使用 -  Assertion

另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機、免備案服務(wù)器”等云主機租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。


分享題目:PowerShellPester使用-Assertion-創(chuàng)新互聯(lián)
轉(zhuǎn)載來源:http://weahome.cn/article/ddcghi.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部