File size: 1,229 Bytes
8c763fb
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
using Namespace System.Management.Automation.Language
Describe "The SafeGetValue method on AST returns safe values" -Tags "CI" {
    It "A hashtable is returned from a HashtableAst" {
        $HashtableAstType = [HashtableAst]
        $HtAst = {
            @{ one = 1 }
            }.ast.Find({$args[0] -is $HashtableAstType}, $true)
        $HtAst | Should -Not -BeNullOrEmpty
        $HtAst.SafeGetValue() | Should -BeOfType Hashtable
    }
    It "An Array is returned from a LiteralArrayAst" {
        $ArrayAstType = [ArrayLiteralAst]
        $ArrayAst = {
            @( 1,2,3,4)
            }.ast.Find({$args[0] -is $ArrayAstType}, $true)
        $ArrayAst | Should -Not -BeNullOrEmpty
        ,$ArrayAst.SafeGetValue() | Should -BeOfType Object[]
    }
    It "The proper error is returned when a variable is referenced" {
        $ast = { $a }.Ast.Find({$args[0] -is "VariableExpressionAst"},$true)
        { $ast.SafeGetValue() } | Should -Throw -ErrorId "InvalidOperationException"
    }
    It "A ScriptBlock AST fails with the proper error" {
        { { 1 }.Ast.SafeGetValue() } | Should -Throw -ErrorId "InvalidOperationException"
    }

}