tests/Get-SyslogHostname.Tests.ps1

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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
$script:ModuleName = 'Posh-SYSLOG'

# Removes all versions of the module from the session before importing
Get-Module $ModuleName | Remove-Module

$ModuleBase = Split-Path -Parent $MyInvocation.MyCommand.Path

# For tests in .\Tests subdirectory
if ((Split-Path $ModuleBase -Leaf) -eq 'Tests') {
    $ModuleBase = Split-Path $ModuleBase -Parent
}

## This variable is for the VSTS tasks and is to be used for referencing any mock artifacts
$Env:ModuleBase = $ModuleBase

Import-Module $ModuleBase\$ModuleName.psd1 -PassThru -ErrorAction Stop | Out-Null

# InModuleScope runs the test in module scope.
# It creates all variables and functions in module scope.
# As a result, test has access to all functions, variables and aliases
# in the module even if they're not exported.
InModuleScope $script:ModuleName {
    Describe "Basic function unit tests" -Tags Build , Unit{
        # Open TCP 514 so we can test TCP connections (without hitting the network)
        $TCPEndpoint = New-Object System.Net.IPEndPoint ([IPAddress]::Loopback,514)
        $TCPListener = New-Object System.Net.Sockets.TcpListener $TCPEndpoint
        $TCPListener.start()

        Mock -ModuleName Posh-SYSLOG Get-GlobalIPProperty { return @{HostName = 'TestHostname'} }

        Context 'UDP Client Tests' {
            $UDPCLient = New-Object -TypeName System.Net.Sockets.UdpClient
            $UDPCLient.Connect('127.0.0.1', '514')

            It 'Uses the FQDN if the computer has dns suffix on a network' {
                Mock -ModuleName Posh-SYSLOG Get-NetworkAdapterDnsSuffix { return 'contoso.com' }
                $TestResult = Get-SyslogHostname -Socket $UDPCLient.Client
                Mock -ModuleName Posh-SYSLOG Get-NetworkAdapterDnsSuffix { return '' }
                $TestResult | Should Be 'TestHostname.contoso.com'
            }

            It 'Uses the FQDN if the computer is domain joined' {
                Mock -ModuleName Posh-SYSLOG Get-GlobalIPProperty { return @{HostName = 'TestHostname'; DomainName = 'contoso.com'} }
                $TestResult = Get-SyslogHostname -Socket $UDPCLient.Client
                Mock -ModuleName Posh-SYSLOG Get-GlobalIPProperty { return @{HostName = 'TestHostname'} }
                $TestResult | Should Be 'TestHostname.contoso.com'
            }

            It 'Uses a Static IP address, on the correct interface that the server is reached on, if no FQDN and not hostname specified' {
                Mock -ModuleName Posh-SYSLOG Get-NetworkIPAddress {return @{PrefixOrigin = 'Manual'}}
                $TestResult = Get-SyslogHostname -Socket $UDPCLient.Client
                $TestResult | Should Be '127.0.0.1'
            }

            It 'Uses the Windows computer name, if no static ip or FQDN' {
                Mock -ModuleName Posh-SYSLOG Get-NetworkIPAddress {return @{PrefixOrigin = 'Dhcp'}}
                $TestResult = Get-SyslogHostname -Socket $UDPCLient.Client
                $TestResult | Should Be 'TestHostname'
            }
        }

        Context 'TCP Client Tests' {
            $TCPCLient = New-Object -TypeName System.Net.Sockets.TcpClient
            $TCPCLient.Connect('127.0.0.1', '514')

            It 'Uses the FQDN if the computer has dns suffix on a network' {
                Mock -ModuleName Posh-SYSLOG Get-NetworkAdapterDnsSuffix { return 'contoso.com' }
                $TestResult = Get-SyslogHostname -Socket $TCPCLient.Client
                Mock -ModuleName Posh-SYSLOG Get-NetworkAdapterDnsSuffix { return '' }
                $TestResult | Should Be 'TestHostname.contoso.com'
            }

            It 'Uses the FQDN if the computer is domain joined' {
                Mock -ModuleName Posh-SYSLOG Get-GlobalIPProperty { return @{HostName = 'TestHostname'; DomainName = 'contoso.com'} }
                $TestResult = Get-SyslogHostname -Socket $TCPCLient.Client
                Mock -ModuleName Posh-SYSLOG Get-GlobalIPProperty { return @{HostName = 'TestHostname'} }
                $TestResult | Should Be 'TestHostname.contoso.com'
            }

            It 'Uses a Static IP address, on the correct interface that the server is reached on, if no FQDN and not hostname specified' {
                Mock -ModuleName Posh-SYSLOG Get-NetworkIPAddress {return @{PrefixOrigin = 'Manual'}}
                $TestResult = Get-SyslogHostname -Socket $TCPCLient.Client
                $TestResult | Should Be '127.0.0.1'
            }

            It 'Uses the Windows computer name, if no static ip or FQDN' {
                Mock -ModuleName Posh-SYSLOG Get-NetworkIPAddress {return @{PrefixOrigin = 'Dhcp'}}
                $TestResult = Get-SyslogHostname -Socket $TCPCLient.Client
                $TestResult | Should Be 'TestHostname'
            }
        }

        $TCPListener.stop()
    }

}