PoshCode Archive  Artifact [026500884a]

Artifact 026500884a4bbc5e917533d053d8f6d667d349950b91e7826c641c393cdaba3a:

  • File CSV-Validator-Framework.ps1 — part of check-in [36dc5acd49] at 2018-06-10 12:59:45 on branch trunk — A simple CSV validator framework supporting external rulesets. Run: .\test-csv.ps1 my.csv .\myruleset.ps1 (user: Oisin Grehan size: 5133)

# encoding: ascii
# api: powershell
# title: CSV Validator Framework
# description: A simple CSV validator framework supporting external rulesets. Run: .\test-csv.ps1 my.csv .\myruleset.ps1
# version: 0.1
# type: script
# author: Oisin Grehan
# license: CC0
# x-poshcode-id: 1664
# x-archived: 2012-11-30T21:56:26
# x-published: 2012-02-25T14:02:00
#
# The rulset script should return a hashtable with two keys: FirstRow and AllRows. These keys point at hashtables containing rules. The key is the rulename, the value is a scriptblock that will be passed the current row and will return true if passes validation, and false if not. FirstRow rules only run on the first row, so it  should contain rules that validate structure like column count, name etc. AllRows rules run on ever row, so validate content.
#
# --- begin test-csv.ps1 ---
param(
    [string]$Path = $(throw "require CSV path!"),
    [string]$RulesetPath = $(throw "require Ruleset path!")
)

$csvFiles = Resolve-Path -Path $Path

# load rules
if ((Test-Path (Resolve-Path $RulesetPath))) {
    
    # ruleset is found, execute and assign result to variable (should be hashtable)
    $ruleset = (& $RulesetPath)
    
    write-host "Ruleset has $($ruleset.firstrow.keys.count) first row rule(s)"
    write-host "Ruleset has $($ruleset.allrows.keys.count) all rows rule(s)"

    if (-not ($ruleset.firstrow)) {
        write-warning "ruleset $rulesetpath has no rules for first row (list/table validation)"
    }
    
    if (-not ($ruleset.allrows)) {
        throw "ruleset $rulesetpath has no rules for allrows (row validation)"
    }
    
} else {
    throw "Could not find ruleset $rulesetpath"
}

write-verbose "Found $($csvfiles.length) file(s)"

$csvFiles | where-object {
        
    # only pass on CSV files
    [io.path]::GetExtension( $_.providerpath ) -eq ".csv"
    
    } | foreach-object { 
    
        write-host "processing CSV $_"
        # import csv files        
        
        $firstRow = $true
        $rowcount = 0
        
        import-csv $_.path <#| select -first 20#> | foreach-object {
            
            write-host "row $rowcount"
            $currentRow = $_
            
            # process "first row only" rules, only on first row            
            if ($firstRow) {
                
                $ruleset.FirstRow.Keys | % {
                    write-host -nonewline "Processing rule $_ ... "
                    
                    # execute the scriptblock with the current row as an argument
                    # the scriptblock is the value of the imported hashtable
                    if ((& $ruleset.firstrow[$_] $currentRow)) {
                    
                        write-host -fore green "passed"
                    
                    } else {
                        # displays green in ISE (lol)
                        write-host -fore red "failed"
                    
                    }
                }
                
                $firstRow = $false
            }
            
            # process "all rows" rules                
            $ruleset.AllRows.Keys | % {
                write-host -nonewline "Processing rule $_ ... "

                # execute the scriptblock with the current row as an argument
                # the scriptblock is the value of the imported hashtable                                
                if ((& $ruleset.AllRows[$_] $currentRow)) {
                
                    write-host -fore green "passed"
                
                } else {
                    # displays green in ISE (lol)
                    write-host -fore red "failed"                
                }
            }
            
            $rowcount++
        }
    }
# --- end test-csv.ps1 ---

# --- begin ruleset-sample.ps1 ---
@{
    FirstRow = @{
            ruleVerifyColumns = {
                param($row)
                
                $columns = @("u_logon_name",
                  "u_user_security_password",
                  "g_user_id_changed_by",
                  "i_account_status",
                  "d_date_registered",
                  "d_date_last_changed",
                  "d_date_created")
                
                $count = 0
                
                $columns | ForEach-Object <# alias = % #> {
                    if ($row.psobject.members.Match($_)) { $count++ }
                }            
            
            $count -eq $columns.length
        };
    };
    
    AllRows = @{
        ruleLogonNameLengthGreaterThan8 = {
            param($row)        
            $row.u_logon_name -gt 8
        };
        
        ruleChangedByIsValidGuid = {
            param($row)

            try {
                # try cast to guid and swallow result if successful
               [guid]$row.g_user_id_changed_by > $null
               
                $true
            
            } catch { $false }
        };
   }
}

# --- end ruleset-sample.ps1 ---