Create a Run.ps1 script 37/7037/1
authorVictor Morales <victor.morales@intel.com>
Tue, 8 Aug 2017 21:08:19 +0000 (16:08 -0500)
committerVictor Morales <victor.morales@intel.com>
Tue, 8 Aug 2017 21:08:19 +0000 (16:08 -0500)
It was created the Run.ps1 helper script. Windows users can create
VMs through this script without having to setup environment variables

Change-Id: I5e8e25d3991cbea3d753afad370c07075ba9cb0e
Signed-off-by: Victor Morales <victor.morales@intel.com>
bootstrap/vagrant-onap/CONTRIBUTING.md
bootstrap/vagrant-onap/tools/Run.ps1 [new file with mode: 0644]

index e473927..ab7f6ba 100644 (file)
@@ -17,6 +17,11 @@ command:
 
     $ ./tools/run.sh testing [test_suite] [function]
 
+or using PowerShell
+
+    PS C:\> Set-ExecutionPolicy Bypass -Scope CurrentUser
+    PS C:\> .\tools\Run.ps1 [test_suite] [function]
+
 Examples
 --------
 
diff --git a/bootstrap/vagrant-onap/tools/Run.ps1 b/bootstrap/vagrant-onap/tools/Run.ps1
new file mode 100644 (file)
index 0000000..55adc11
--- /dev/null
@@ -0,0 +1,21 @@
+switch ($args[0])
+    {
+        "all_in_one" { $env:DEPLOY_MODE="all-in-one" }
+        { @("dns", "mr", "sdc", "aai", "mso", "robot", "vid", "sdnc", "portal", "dcae", "policy", "appc") -contains $_ } { $env:DEPLOY_MODE="individual" }
+        "testing"
+            {
+                $env:DEPLOY_MODE="testing"
+                $test_suite="*"
+                if (!$args[1]) { $test_suite=$args[1] }
+                $env:TEST_SUITE=$test_suite
+                $test_case="*"
+                if (!$args[2]) { $test_case=$args[2] }
+                $env:TEST_CASE=$test_case
+
+                rm ./opt/ -Recurse -Force
+                rm $HOME/.m2/ -Recurse -Force
+             }
+    }
+
+vagrant destroy -f $args[0]
+vagrant up $args[0]