Merge pull request #19 from pblivingston/vban-fixes

Vban fixes
This commit is contained in:
Onyx and Iris 2025-11-29 01:27:06 +00:00 committed by GitHub
commit e944dc46e6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 351 additions and 123 deletions

View File

@ -18,6 +18,29 @@ Before any major/minor/patch is released all test units will be run to verify th
- Device classes - Device classes
- EQ class - EQ class
- FX class - FX class
- Vban.port sets Vban.Instream[0].port
- Vban Midi and Command streams
- on, write-only
- name, write-only
- ip, write-only
### Changed
- some vban.instream | vban.outstream commands now added with meta functions
- on
- name
- ip
- cast vban getters to types for consistency
### Fixed
- some vban commands incorrectly read-only/write-only
- enable
- instream|outstream.quality
- instream|outstream.route
- vban.stream.port: [string]$arg -> [int]$arg
- vban route range (API documentation is incorrect)
- vban.stream.sr: $this._port -> $this._sr
## [3.3.0] - 2024-06-29 ## [3.3.0] - 2024-06-29

View File

@ -382,14 +382,16 @@ $vmr.button[5].trigger = $true
### VBAN ### VBAN
- vmr.vban.enable: Toggle VBAN on or off. Accepts a bool value. The following vban commands are available:
- enable: bool
- port: int, from 1024 - 65535
For each vban in/out stream the following parameters are defined: For each vban in/out stream the following parameters are defined:
- on: bool - on: bool
- name: string - name: string
- ip: string - ip: string
- port: int, from 1024 - 65535
- sr: in, (11025, 16000, 22050, 24000, 32000, 44100, 48000, 64000, 88200, 96000) - sr: in, (11025, 16000, 22050, 24000, 32000, 44100, 48000, 64000, 88200, 96000)
- channel: int from 1 to 8 - channel: int from 1 to 8
- bit: int, 16 or 24 - bit: int, 16 or 24
@ -403,9 +405,9 @@ example:
```powershell ```powershell
$vmr.vban.enable = $true $vmr.vban.enable = $true
$vmr.vban.port = 6990
$vmr.vban.instream[0].on = $true $vmr.vban.instream[0].on = $true
$vmr.vban.instream[2].port = 6990
$vmr.vban.outstream[3].bit = 16 $vmr.vban.outstream[3].bit = 16
``` ```

View File

@ -9,8 +9,7 @@ $KindMap = @{
'asio_out' = 8 'asio_out' = 8
'composite' = 0 'composite' = 0
'insert' = 0 'insert' = 0
'vban_in' = 4 'vban' = @{ 'in' = 4; 'out' = 4; 'midi' = 1; 'text' = 1 }
'vban_out' = 4
'eq_ch' = @{ 'strip' = 0; 'bus' = 0 } 'eq_ch' = @{ 'strip' = 0; 'bus' = 0 }
'cells' = 0 'cells' = 0
}; };
@ -24,8 +23,7 @@ $KindMap = @{
'asio_out' = 8 'asio_out' = 8
'composite' = 8 'composite' = 8
'insert' = 22 'insert' = 22
'vban_in' = 8 'vban' = @{ 'in' = 8; 'out' = 8; 'midi' = 1; 'text' = 1 }
'vban_out' = 8
'eq_ch' = @{ 'strip' = 0; 'bus' = 8 } 'eq_ch' = @{ 'strip' = 0; 'bus' = 8 }
'cells' = 6 'cells' = 6
}; };
@ -39,8 +37,7 @@ $KindMap = @{
'asio_out' = 8 'asio_out' = 8
'composite' = 8 'composite' = 8
'insert' = 34 'insert' = 34
'vban_in' = 8 'vban' = @{ 'in' = 8; 'out' = 8; 'midi' = 1; 'text' = 1 }
'vban_out' = 8
'eq_ch' = @{ 'strip' = 2; 'bus' = 8 } 'eq_ch' = @{ 'strip' = 2; 'bus' = 8 }
'cells' = 6 'cells' = 6
}; };

View File

@ -8,43 +8,20 @@ class Vban : IRemote {
[string] identifier () { [string] identifier () {
return 'vban.' + $this.direction + 'stream[' + $this.index + ']' return 'vban.' + $this.direction + 'stream[' + $this.index + ']'
} }
}
hidden $_on = $($this | Add-Member ScriptProperty 'on' ` class VbanAudio : Vban {
{ VbanAudio ([int]$index, [Object]$remote, [string]$direction) : base ($index, $remote, $direction) {
$this.Getter('on') AddBoolMembers -PARAMS @('on')
} ` AddStringMembers -PARAMS @('name', 'ip')
{ }
param([bool]$arg)
$this._on = $this.Setter('on', $arg)
}
)
hidden $_name = $($this | Add-Member ScriptProperty 'name' `
{
$this.Getter_String('name')
} `
{
param([string]$arg)
$this._name = $this.Setter('name', $arg)
}
)
hidden $_ip = $($this | Add-Member ScriptProperty 'ip' `
{
$this.Getter_String('ip')
} `
{
param([string]$arg)
$this._ip = $this.Setter('ip', $arg)
}
)
hidden $_port = $($this | Add-Member ScriptProperty 'port' ` hidden $_port = $($this | Add-Member ScriptProperty 'port' `
{ {
$this.Getter('port') [int]$this.Getter('port')
} ` } `
{ {
param([string]$arg) param([int]$arg)
if ($arg -ge 1024 -and $arg -le 65535) { if ($arg -ge 1024 -and $arg -le 65535) {
$this._port = $this.Setter('port', $arg) $this._port = $this.Setter('port', $arg)
} }
@ -56,7 +33,7 @@ class Vban : IRemote {
hidden $_sr = $($this | Add-Member ScriptProperty 'sr' ` hidden $_sr = $($this | Add-Member ScriptProperty 'sr' `
{ {
$this.Getter('sr') [int]$this.Getter('sr')
} ` } `
{ {
param([int]$arg) param([int]$arg)
@ -64,7 +41,7 @@ class Vban : IRemote {
else { else {
$opts = @(11025, 16000, 22050, 24000, 32000, 44100, 48000, 64000, 88200, 96000) $opts = @(11025, 16000, 22050, 24000, 32000, 44100, 48000, 64000, 88200, 96000)
if ($opts.Contains($arg)) { if ($opts.Contains($arg)) {
$this._port = $this.Setter('sr', $arg) $this._sr = $this.Setter('sr', $arg)
} }
else { else {
Write-Warning ('Expected one of', $opts) Write-Warning ('Expected one of', $opts)
@ -75,7 +52,7 @@ class Vban : IRemote {
hidden $_channel = $($this | Add-Member ScriptProperty 'channel' ` hidden $_channel = $($this | Add-Member ScriptProperty 'channel' `
{ {
$this.Getter('channel') [int]$this.Getter('channel')
} ` } `
{ {
param([int]$arg) param([int]$arg)
@ -113,63 +90,156 @@ class Vban : IRemote {
hidden $_quality = $($this | Add-Member ScriptProperty 'quality' ` hidden $_quality = $($this | Add-Member ScriptProperty 'quality' `
{ {
$this.Getter('quality') [int]$this.Getter('quality')
} ` } `
{ {
param([int]$arg) param([int]$arg)
if ($this.direction -eq 'in') { Write-Warning ('Error, read only value') } if ($arg -ge 0 -and $arg -le 4) {
$this._quality = $this.Setter('quality', $arg)
}
else { else {
if ($arg -ge 0 -and $arg -le 4) { Write-Warning ('Expected value from 0 to 4')
$this._quality = $this.Setter('quality', $arg)
}
else {
Write-Warning ('Expected value from 0 to 4')
}
} }
} }
) )
hidden $_route = $($this | Add-Member ScriptProperty 'route' ` hidden $_route = $($this | Add-Member ScriptProperty 'route' `
{ {
$this.Getter('route') [int]$this.Getter('route')
} ` } `
{ {
param([int]$arg) param([int]$arg)
if ($this.direction -eq 'in') { Write-Warning ('Error, read only value') } $rt = $this.remote.kind['p_' + $this.direction] + $this.remote.kind['v_' + $this.direction] - 1
if ($arg -ge 0 -and $arg -le $rt) {
$this._route = $this.Setter('route', $arg)
}
else { else {
if ($arg -ge 0 -and $arg -le 8) { Write-Warning ("Expected value from 0 to $rt")
$this._route = $this.Setter('route', $arg)
}
else {
Write-Warning ('Expected value from 0 to 8')
}
} }
} }
) )
} }
class VbanMidi : Vban {
VbanMidi ([int]$index, [Object]$remote, [string]$direction) : base ($index, $remote, $direction) {
}
class VbanInstream : Vban { hidden $_on = $($this | Add-Member ScriptProperty 'on' `
VbanInstream ([int]$index, [Object]$remote, [string]$direction) : base ($index, $remote, $direction) { {
return Write-Warning ("ERROR: $($this.identifier()).on is write only")
} `
{
param([bool]$arg)
$this._on = $this.Setter('on', $arg)
}
)
hidden $_name = $($this | Add-Member ScriptProperty 'name' `
{
return Write-Warning ("ERROR: $($this.identifier()).name is write only")
} `
{
param([string]$arg)
$this._name = $this.Setter('name', $arg)
}
)
hidden $_ip = $($this | Add-Member ScriptProperty 'ip' `
{
return Write-Warning ("ERROR: $($this.identifier()).ip is write only")
} `
{
param([string]$arg)
$this._ip = $this.Setter('ip', $arg)
}
)
}
class VbanText : Vban {
VbanText ([int]$index, [Object]$remote, [string]$direction) : base ($index, $remote, $direction) {
}
hidden $_on = $($this | Add-Member ScriptProperty 'on' `
{
return Write-Warning ("ERROR: $($this.identifier()).on is write only")
} `
{
param([bool]$arg)
$this._on = $this.Setter('on', $arg)
}
)
hidden $_name = $($this | Add-Member ScriptProperty 'name' `
{
return Write-Warning ("ERROR: $($this.identifier()).name is write only")
} `
{
param([string]$arg)
$this._name = $this.Setter('name', $arg)
}
)
hidden $_ip = $($this | Add-Member ScriptProperty 'ip' `
{
return Write-Warning ("ERROR: $($this.identifier()).ip is write only")
} `
{
param([string]$arg)
$this._ip = $this.Setter('ip', $arg)
}
)
}
class VbanInAudio : VbanAudio {
VbanInAudio ([int]$index, [Object]$remote) : base ($index, $remote, 'in') {
} }
} }
class VbanInMidi : VbanMidi {
class VbanOutstream : Vban { VbanInMidi ([int]$index, [Object]$remote) : base ($index, $remote, 'in') {
VbanOutstream ([int]$index, [Object]$remote, [string]$direction) : base ($index, $remote, $direction) {
} }
} }
class VbanInText : VbanText {
VbanInText ([int]$index, [Object]$remote) : base ($index, $remote, 'in') {
}
}
class VbanOutAudio : VbanAudio {
VbanOutAudio ([int]$index, [Object]$remote) : base ($index, $remote, 'out') {
}
}
class VbanOutMidi : VbanMidi {
VbanOutMidi ([int]$index, [Object]$remote) : base ($index, $remote, 'out') {
}
}
function Make_Vban ([Object]$remote) { function Make_Vban ([Object]$remote) {
[System.Collections.ArrayList]$instream = @() [System.Collections.ArrayList]$instream = @()
[System.Collections.ArrayList]$outstream = @() [System.Collections.ArrayList]$outstream = @()
0..$($remote.kind.vban_in - 1) | ForEach-Object { $totalInstreams = $remote.kind.vban.in + $remote.kind.vban.midi + $remote.kind.vban.text
[void]$instream.Add([VbanInstream]::new($_, $remote, 'in')) $totalOutstreams = $remote.kind.vban.out + $remote.kind.vban.midi
for ($i = 0; $i -lt $totalInstreams; $i++) {
if ($i -lt $remote.kind.vban.in) {
[void]$instream.Add([VbanInAudio]::new($i, $remote))
}
elseif ($i -lt ($remote.kind.vban.in + $remote.kind.vban.midi)) {
[void]$instream.Add([VbanInMidi]::new($i, $remote))
}
else {
[void]$instream.Add([VbanInText]::new($i, $remote))
}
} }
0..$($remote.kind.vban_out - 1) | ForEach-Object { for ($i = 0; $i -lt $totalOutstreams; $i++) {
[void]$outstream.Add([VbanOutstream]::new($_, $remote, 'out')) if ($i -lt $remote.kind.vban.out) {
[void]$outstream.Add([VbanOutAudio]::new($i, $remote))
}
else {
[void]$outstream.Add([VbanOutMidi]::new($i, $remote))
}
} }
$CustomObject = [pscustomobject]@{ $CustomObject = [pscustomobject]@{
@ -179,11 +249,25 @@ function Make_Vban ([Object]$remote) {
$CustomObject | Add-Member ScriptProperty 'enable' ` $CustomObject | Add-Member ScriptProperty 'enable' `
{ {
return Write-Warning ('ERROR: vban.enable is write only') return [bool]( Param_Get -PARAM 'vban.enable' )
} ` } `
{ {
param([bool]$arg) param([bool]$arg)
Param_Set -PARAM 'vban.Enable' -Value $(if ($arg) { 1 } else { 0 }) Param_Set -PARAM 'vban.enable' -Value $(if ($arg) { 1 } else { 0 })
}
$CustomObject | Add-Member ScriptProperty 'port' `
{
return [int]( Param_Get -PARAM 'vban.instream[0].port' )
} `
{
param([int]$arg)
if ($arg -ge 1024 -and $arg -le 65535) {
Param_Set -PARAM 'vban.instream[0].port' -Value $arg
}
else {
Write-Warning ('Expected value from 1024 to 65535')
}
} }
$CustomObject $CustomObject

View File

@ -1,5 +1,5 @@
Describe -Tag 'higher', -TestName 'All Higher Tests' { Describe -Tag 'higher', -TestName 'All Higher Tests' {
Describe 'Bool tests' -ForEach @( Describe 'Bool tests' -Tag 'bool' -ForEach @(
@{ Value = $true; Expected = $true } @{ Value = $true; Expected = $true }
@{ Value = $false; Expected = $false } @{ Value = $false; Expected = $false }
) { ) {
@ -97,21 +97,33 @@ Describe -Tag 'higher', -TestName 'All Higher Tests' {
} }
} }
Context 'Vban instream' -ForEach @( Context 'Vban' {
@{ Index = $vban_in } It 'Should set and get Vban.enable' {
) { $vmr.vban.enable = $value
It "Should set vban.instream[$index].on" { $vmr.command.restart
$vmr.vban.instream[$index].on = $value Start-Sleep -Milliseconds 2000
$vmr.vban.instream[$index].on | Should -Be $expected $vmr.vban.enable | Should -Be $expected
} }
}
Context 'Vban outstream' -ForEach @( Context 'Instream' -ForEach @(
@{ Index = $vban_out } @{ Index = $vban_inA }
) { # @{ Index = $vban_inM }
It "Should set vban.outstream[$index].on" { # @{ Index = $vban_inT }
$vmr.vban.outstream[$index].on = $value ) {
$vmr.vban.outstream[$index].on | Should -Be $expected It "Should set vban.instream[$index].on" {
$vmr.vban.instream[$index].on = $value
$vmr.vban.instream[$index].on | Should -Be $expected
}
}
Context 'Outstream' -ForEach @(
@{ Index = $vban_outA }
# @{ Index = $vban_outM }
) {
It "Should set vban.outstream[$index].on" {
$vmr.vban.outstream[$index].on = $value
$vmr.vban.outstream[$index].on | Should -Be $expected
}
} }
} }
@ -184,20 +196,20 @@ Describe -Tag 'higher', -TestName 'All Higher Tests' {
It 'Should set and get Option.monitoronsel' -Skip:$ifNotPotato { It 'Should set and get Option.monitoronsel' -Skip:$ifNotPotato {
$vmr.option.monitoronsel = $value $vmr.option.monitoronsel = $value
$vmr.command.restart $vmr.command.restart
Start-Sleep -Milliseconds 500 Start-Sleep -Milliseconds 2000
$vmr.option.monitoronsel | Should -Be $value $vmr.option.monitoronsel | Should -Be $value
} }
It 'Should set and get Option.slidermode' -Skip:$ifNotPotato { It 'Should set and get Option.slidermode' -Skip:$ifNotPotato {
$vmr.option.slidermode = $value $vmr.option.slidermode = $value
$vmr.command.restart $vmr.command.restart
Start-Sleep -Milliseconds 500 Start-Sleep -Milliseconds 2000
$vmr.option.slidermode | Should -Be $value $vmr.option.slidermode | Should -Be $value
} }
} }
} }
Describe 'Float Tests' { Describe 'Float Tests' -Tag 'float' {
Context 'Strip, one physical one virtual' -ForEach @( Context 'Strip, one physical one virtual' -ForEach @(
@{ Index = $phys_in }, @{ Index = $virt_in } @{ Index = $phys_in }, @{ Index = $virt_in }
) { ) {
@ -331,13 +343,13 @@ Describe -Tag 'higher', -TestName 'All Higher Tests' {
) { ) {
$vmr.option.delay[$phys_out].set($value) $vmr.option.delay[$phys_out].set($value)
$vmr.command.restart $vmr.command.restart
Start-Sleep -Milliseconds 500 Start-Sleep -Milliseconds 2000
$vmr.option.delay[$phys_out].get() | Should -Be $value $vmr.option.delay[$phys_out].get() | Should -Be $value
} }
} }
} }
Describe 'Int Tests' { Describe 'Int Tests' -Tag 'int' {
Context 'Strip, one physical, one virtual' -ForEach @( Context 'Strip, one physical, one virtual' -ForEach @(
@{ Index = $phys_in }, @{ Index = $virt_in } @{ Index = $phys_in }, @{ Index = $virt_in }
) { ) {
@ -406,23 +418,113 @@ Describe -Tag 'higher', -TestName 'All Higher Tests' {
} }
} }
Context 'Vban outstream' -ForEach @( Context 'Vban' {
@{ Index = $vban_out } It 'Should set vban.port' -ForEach @(
) { @{ Value = 1024; Expected = 1024 }
It "Should set vban.outstream[$index].sr to $value" -ForEach @( @{ Value = 65535; Expected = 65535 }
@{ Value = 44100; Expected = 44100 }
@{ Value = 48000; Expected = 48000 }
) { ) {
$vmr.vban.outstream[$index].sr = $value $vmr.vban.port = $value
$vmr.vban.outstream[$index].sr | Should -Be $expected $vmr.command.restart
Start-Sleep -Milliseconds 2000
$vmr.vban.port | Should -Be $expected
} }
It 'Should set vban.outstream[0].channel to 1' -ForEach @( Context 'Instream' -ForEach @(
@{ Value = 1; Expected = 1 } @{ Index = $vban_inA }
@{ Value = 2; Expected = 2 }
) { ) {
$vmr.vban.outstream[$index].channel = $value It "Should set vban.instream[$index].port" -ForEach @(
$vmr.vban.outstream[$index].channel | Should -Be $expected @{ Value = 1024; Expected = 1024 }
@{ Value = 65535; Expected = 65535 }
) {
$vmr.vban.instream[$index].port = $value
$vmr.command.restart
Start-Sleep -Milliseconds 2000
$vmr.vban.instream[$index].port | Should -Be $expected
}
It "Should set vban.instream[$index].sr" {
$vmr.vban.instream[$index].sr | Should -BeOfType [int]
}
It "Should set vban.instream[$index].channel" {
$vmr.vban.instream[$index].channel | Should -BeOfType [int]
}
It "Should set vban.instream[$index].bit" {
$vmr.vban.instream[$index].bit | Should -BeOfType [int]
}
It "Should set vban.instream[$index].quality" -ForEach @(
@{ Value = 0; Expected = 0 }
@{ Value = 4; Expected = 4 }
) {
$vmr.vban.instream[$index].quality = $value
Start-Sleep -Milliseconds 500
$vmr.vban.instream[$index].quality | Should -Be $expected
}
It "Should set vban.instream[$index].route" -ForEach @(
@{ Value = $phys_in; Expected = $phys_in }
@{ Value = $virt_in; Expected = $virt_in }
) {
$vmr.vban.instream[$index].route = $value
$vmr.vban.instream[$index].route | Should -Be $expected
}
}
Context 'Outstream' -ForEach @(
@{ Index = $vban_outA }
) {
It "Should set vban.outstream[$index].port" -ForEach @(
@{ Value = 1024; Expected = 1024 }
@{ Value = 65535; Expected = 65535 }
) {
$vmr.vban.outstream[$index].port = $value
$vmr.command.restart
Start-Sleep -Milliseconds 2000
$vmr.vban.outstream[$index].port | Should -Be $expected
}
It "Should set vban.outstream[$index].sr" -ForEach @(
@{ Value = 44100; Expected = 44100 }
@{ Value = 48000; Expected = 48000 }
) {
$vmr.vban.outstream[$index].sr = $value
$vmr.vban.outstream[$index].sr | Should -Be $expected
}
It "Should set vban.outstream[$index].channel" -ForEach @(
@{ Value = 1; Expected = 1 }
@{ Value = 2; Expected = 2 }
) {
$vmr.vban.outstream[$index].channel = $value
$vmr.vban.outstream[$index].channel | Should -Be $expected
}
It "Should set vban.outstream[$index].bit" -ForEach @(
@{ Value = 16; Expected = 16 }
@{ Value = 24; Expected = 24 }
) {
$vmr.vban.outstream[$index].bit = $value
$vmr.vban.outstream[$index].bit | Should -Be $expected
}
It "Should set vban.outstream[$index].quality" -ForEach @(
@{ Value = 0; Expected = 0 }
@{ Value = 4; Expected = 4 }
) {
$vmr.vban.outstream[$index].quality = $value
Start-Sleep -Milliseconds 500
$vmr.vban.outstream[$index].quality | Should -Be $expected
}
It "Should set vban.outstream[$index].route" -ForEach @(
@{ Value = $phys_out; Expected = $phys_out }
@{ Value = $virt_out; Expected = $virt_out }
) {
$vmr.vban.outstream[$index].route = $value
$vmr.vban.outstream[$index].route | Should -Be $expected
}
} }
} }
@ -468,7 +570,7 @@ Describe -Tag 'higher', -TestName 'All Higher Tests' {
} }
} }
Describe 'String Tests' { Describe 'String Tests' -Tag 'string' {
Context 'Strip, one physical, one virtual' -ForEach @( Context 'Strip, one physical, one virtual' -ForEach @(
@{ Index = $phys_in }, @{ Index = $virt_in } @{ Index = $phys_in }, @{ Index = $virt_in }
) { ) {
@ -657,28 +759,45 @@ Describe -Tag 'higher', -TestName 'All Higher Tests' {
} }
} }
Describe 'Vban' -ForEach @( Describe 'Vban' {
@{ Index = $vban_in } Context 'Instream' -ForEach @(
) { @{ Index = $vban_inA }
Context 'instream' { # @{ Index = $vban_inM }
Context 'ip' -ForEach @( # @{ Index = $vban_inT }
) {
It "Should set vban.instream[$index].name" -ForEach @(
@{ Value = 'TestIn0'; Expected = 'TestIn0' }
@{ Value = 'TestIn1'; Expected = 'TestIn1' }
) {
$vmr.vban.instream[$index].name = $value
$vmr.vban.instream[$index].name | Should -Be $expected
}
It "Should set vban.instream[$index].ip" -ForEach @(
@{ Value = '0.0.0.0'; Expected = '0.0.0.0' } @{ Value = '0.0.0.0'; Expected = '0.0.0.0' }
) { ) {
It "Should set vban.instream[$index].name to $value" { $vmr.vban.instream[$index].ip = $value
$vmr.vban.instream[$index].ip = $value $vmr.vban.instream[$index].ip | Should -Be $expected
$vmr.vban.instream[$index].ip | Should -Be $expected
}
} }
} }
Context 'outstream' { Context 'Outstream' -ForEach @(
Context 'ip' -ForEach @( @{ Index = $vban_outA }
# @{ Index = $vban_outM }
) {
It "Should set vban.outstream[$index].name" -ForEach @(
@{ Value = 'TestOut0'; Expected = 'TestOut0' }
@{ Value = 'TestOut1'; Expected = 'TestOut1' }
) {
$vmr.vban.outstream[$index].name = $value
$vmr.vban.outstream[$index].name | Should -Be $expected
}
It "Should set vban.outstream[$index].ip" -ForEach @(
@{ Value = '0.0.0.0'; Expected = '0.0.0.0' } @{ Value = '0.0.0.0'; Expected = '0.0.0.0' }
) { ) {
It "Should set vban.outstream[$index].name to $value" { $vmr.vban.outstream[$index].ip = $value
$vmr.vban.outstream[$index].ip = $value $vmr.vban.outstream[$index].ip | Should -Be $expected
$vmr.vban.outstream[$index].ip | Should -Be $expected
}
} }
} }
} }

View File

@ -14,8 +14,11 @@ function main() {
$virt_in = $vmr.kind.p_in + $vmr.kind.v_in - 1 $virt_in = $vmr.kind.p_in + $vmr.kind.v_in - 1
$phys_out = $vmr.kind.p_out - 1 $phys_out = $vmr.kind.p_out - 1
$virt_out = $vmr.kind.p_out + $vmr.kind.v_out - 1 $virt_out = $vmr.kind.p_out + $vmr.kind.v_out - 1
$vban_in = $vmr.kind.vban_in - 1 $vban_inA = $vmr.kind.vban.in - 1
$vban_out = $vmr.kind.vban_out - 1 $vban_inM = $vmr.kind.vban.in + $vmr.kind.vban.midi - 1
$vban_inT = $vmr.kind.vban.in + $vmr.kind.vban.midi + $vmr.kind.vban.text - 1
$vban_outA = $vmr.kind.vban.out - 1
$vban_outM = $vmr.kind.vban.out + $vmr.kind.vban.midi - 1
$insert = $vmr.kind.insert - 1 $insert = $vmr.kind.insert - 1
$composite = $vmr.kind.composite - 1 $composite = $vmr.kind.composite - 1
$strip_ch = $vmr.kind.eq_ch['strip'] - 1 $strip_ch = $vmr.kind.eq_ch['strip'] - 1