]> git.immae.eu Git - github/fretlink/terraform-provider-statuscake.git/blobdiff - statuscake/resource_statuscaketest.go
`status` and `uptime` params is calculated
[github/fretlink/terraform-provider-statuscake.git] / statuscake / resource_statuscaketest.go
index 101ee83582caa4b409ae71f237ebda0ee8ed8769..50e16f9ffb145418e201c496cfab8db73bd99f81 100644 (file)
@@ -34,7 +34,7 @@ func resourceStatusCakeTest() *schema.Resource {
                        },
 
                        "contact_id": {
-                               Type:     schema.TypeInt,
+                               Type:     schema.TypeString,
                                Optional: true,
                        },
 
@@ -76,6 +76,120 @@ func resourceStatusCakeTest() *schema.Resource {
                                Optional: true,
                                Default:  5,
                        },
+                       "custom_header": {
+                               Type:     schema.TypeString,
+                               Optional: true,
+                       },
+
+                       "user_agent": {
+                               Type:     schema.TypeString,
+                               Optional: true,
+                       },
+
+                       "status": {
+                               Type:     schema.TypeString,
+                               Computed: true,
+                       },
+
+                       "uptime": {
+                               Type:     schema.TypeFloat,
+                               Computed: true,
+                       },
+
+                       "node_locations": {
+                               Type:     schema.TypeList,
+                               Elem:     &schema.Schema{Type: schema.TypeString},
+                               Optional: true,
+                       },
+
+                       "ping_url": {
+                               Type:     schema.TypeString,
+                               Optional: true,
+                       },
+
+                       "basic_user": {
+                               Type:     schema.TypeString,
+                               Optional: true,
+                       },
+
+                       "basic_pass": {
+                               Type:     schema.TypeString,
+                               Optional: true,
+                       },
+
+                       "public": {
+                               Type:     schema.TypeInt,
+                               Optional: true,
+                       },
+
+                       "logo_image": {
+                               Type:     schema.TypeString,
+                               Optional: true,
+                       },
+
+                       "branding": {
+                               Type:     schema.TypeInt,
+                               Optional: true,
+                       },
+
+                       "website_host": {
+                               Type:     schema.TypeString,
+                               Optional: true,
+                       },
+
+                       "virus": {
+                               Type:     schema.TypeInt,
+                               Optional: true,
+                       },
+
+                       "find_string": {
+                               Type:     schema.TypeString,
+                               Optional: true,
+                       },
+
+                       "do_not_find": {
+                               Type:     schema.TypeBool,
+                               Optional: true,
+                       },
+
+                       "real_browser": {
+                               Type:     schema.TypeInt,
+                               Optional: true,
+                       },
+
+                       "test_tags": {
+                               Type:     schema.TypeString,
+                               Optional: true,
+                       },
+
+                       "status_codes": {
+                               Type:     schema.TypeString,
+                               Optional: true,
+                               Default: "204, 205, 206, 303, 400, 401, 403, 404, 405, 406, " +
+                                       "408, 410, 413, 444, 429, 494, 495, 496, 499, 500, 501, 502, 503, " +
+                                       "504, 505, 506, 507, 508, 509, 510, 511, 521, 522, 523, 524, 520, " +
+                                       "598, 599",
+                       },
+
+                       "use_jar": {
+                               Type:     schema.TypeInt,
+                               Optional: true,
+                       },
+
+                       "post_raw": {
+                               Type:     schema.TypeString,
+                               Optional: true,
+                       },
+
+                       "final_endpoint": {
+                               Type:     schema.TypeString,
+                               Optional: true,
+                       },
+
+                       "follow_redirect": {
+                               Type:     schema.TypeBool,
+                               Optional: true,
+                       },
                },
        }
 }
@@ -84,16 +198,38 @@ func CreateTest(d *schema.ResourceData, meta interface{}) error {
        client := meta.(*statuscake.Client)
 
        newTest := &statuscake.Test{
-               WebsiteName:  d.Get("website_name").(string),
-               WebsiteURL:   d.Get("website_url").(string),
-               CheckRate:    d.Get("check_rate").(int),
-               TestType:     d.Get("test_type").(string),
-               Paused:       d.Get("paused").(bool),
-               Timeout:      d.Get("timeout").(int),
-               ContactID:    d.Get("contact_id").(int),
-               Confirmation: d.Get("confirmations").(int),
-               Port:         d.Get("port").(int),
-               TriggerRate:  d.Get("trigger_rate").(int),
+               WebsiteName:    d.Get("website_name").(string),
+               WebsiteURL:     d.Get("website_url").(string),
+               CheckRate:      d.Get("check_rate").(int),
+               TestType:       d.Get("test_type").(string),
+               Paused:         d.Get("paused").(bool),
+               Timeout:        d.Get("timeout").(int),
+               ContactID:      d.Get("contact_id").(string),
+               Confirmation:   d.Get("confirmations").(int),
+               Port:           d.Get("port").(int),
+               TriggerRate:    d.Get("trigger_rate").(int),
+               CustomHeader:   d.Get("custom_header").(string),
+               UserAgent:      d.Get("user_agent").(string),
+               Status:         d.Get("status").(string),
+               Uptime:         d.Get("uptime").(float64),
+               NodeLocations:  d.Get("node_locations").([]string),
+               PingURL:        d.Get("ping_url").(string),
+               BasicUser:      d.Get("basic_user").(string),
+               BasicPass:      d.Get("basic_pass").(string),
+               Public:         d.Get("public").(int),
+               LogoImage:      d.Get("logo_image").(string),
+               Branding:       d.Get("branding").(int),
+               WebsiteHost:    d.Get("website_host").(string),
+               Virus:          d.Get("virus").(int),
+               FindString:     d.Get("find_string").(string),
+               DoNotFind:      d.Get("do_not_find").(bool),
+               RealBrowser:    d.Get("real_browser").(int),
+               TestTags:       d.Get("test_tags").(string),
+               StatusCodes:    d.Get("status_codes").(string),
+               UseJar:         d.Get("use_jar").(int),
+               PostRaw:        d.Get("post_raw").(string),
+               FinalEndpoint:  d.Get("final_endpoint").(string),
+               FollowRedirect: d.Get("follow_redirect").(bool),
        }
 
        log.Printf("[DEBUG] Creating new StatusCake Test: %s", d.Get("website_name").(string))
@@ -104,6 +240,8 @@ func CreateTest(d *schema.ResourceData, meta interface{}) error {
        }
 
        d.Set("test_id", fmt.Sprintf("%d", response.TestID))
+       d.Set("status", response.Status)
+       d.Set("uptime", fmt.Sprintf("%.3f", response.Uptime))
        d.SetId(fmt.Sprintf("%d", response.TestID))
 
        return ReadTest(d, meta)
@@ -159,6 +297,28 @@ func ReadTest(d *schema.ResourceData, meta interface{}) error {
        d.Set("confirmations", testResp.Confirmation)
        d.Set("port", testResp.Port)
        d.Set("trigger_rate", testResp.TriggerRate)
+       d.Set("custom_header", testResp.CustomHeader)
+       d.Set("user_agent", testResp.UserAgent)
+       d.Set("status", testResp.Status)
+       d.Set("uptime", testResp.Uptime)
+       d.Set("node_locations", testResp.NodeLocations)
+       d.Set("ping_url", testResp.PingURL)
+       d.Set("basic_user", testResp.BasicUser)
+       d.Set("basic_pass", testResp.BasicPass)
+       d.Set("public", testResp.Public)
+       d.Set("logo_image", testResp.LogoImage)
+       d.Set("branding", testResp.Branding)
+       d.Set("website_host", testResp.WebsiteHost)
+       d.Set("virus", testResp.Virus)
+       d.Set("find_string", testResp.FindString)
+       d.Set("do_not_find", testResp.DoNotFind)
+       d.Set("real_browser", testResp.RealBrowser)
+       d.Set("test_tags", testResp.TestTags)
+       d.Set("status_codes", testResp.StatusCodes)
+       d.Set("use_jar", testResp.UseJar)
+       d.Set("post_raw", testResp.PostRaw)
+       d.Set("final_endpoint", testResp.FinalEndpoint)
+       d.Set("follow_redirect", testResp.FollowRedirect)
 
        return nil
 }
@@ -181,7 +341,7 @@ func getStatusCakeTestInput(d *schema.ResourceData) *statuscake.Test {
                test.CheckRate = v.(int)
        }
        if v, ok := d.GetOk("contact_id"); ok {
-               test.ContactID = v.(int)
+               test.ContactID = v.(string)
        }
        if v, ok := d.GetOk("test_type"); ok {
                test.TestType = v.(string)
@@ -192,9 +352,6 @@ func getStatusCakeTestInput(d *schema.ResourceData) *statuscake.Test {
        if v, ok := d.GetOk("timeout"); ok {
                test.Timeout = v.(int)
        }
-       if v, ok := d.GetOk("contact_id"); ok {
-               test.ContactID = v.(int)
-       }
        if v, ok := d.GetOk("confirmations"); ok {
                test.Confirmation = v.(int)
        }
@@ -204,13 +361,66 @@ func getStatusCakeTestInput(d *schema.ResourceData) *statuscake.Test {
        if v, ok := d.GetOk("trigger_rate"); ok {
                test.TriggerRate = v.(int)
        }
-
-       defaultStatusCodes := "204, 205, 206, 303, 400, 401, 403, 404, 405, 406, " +
-               "408, 410, 413, 444, 429, 494, 495, 496, 499, 500, 501, 502, 503, " +
-               "504, 505, 506, 507, 508, 509, 510, 511, 521, 522, 523, 524, 520, " +
-               "598, 599"
-
-       test.StatusCodes = defaultStatusCodes
+       if v, ok := d.GetOk("custom_header"); ok {
+               test.CustomHeader = v.(string)
+       }
+       if v, ok := d.GetOk("user_agent"); ok {
+               test.UserAgent = v.(string)
+       }
+       if v, ok := d.GetOk("node_locations"); ok {
+               test.NodeLocations = v.([]string)
+       }
+       if v, ok := d.GetOk("ping_url"); ok {
+               test.PingURL = v.(string)
+       }
+       if v, ok := d.GetOk("basic_user"); ok {
+               test.BasicUser = v.(string)
+       }
+       if v, ok := d.GetOk("basic_pass"); ok {
+               test.BasicPass = v.(string)
+       }
+       if v, ok := d.GetOk("public"); ok {
+               test.Public = v.(int)
+       }
+       if v, ok := d.GetOk("logo_image"); ok {
+               test.LogoImage = v.(string)
+       }
+       if v, ok := d.GetOk("branding"); ok {
+               test.Branding = v.(int)
+       }
+       if v, ok := d.GetOk("website_host"); ok {
+               test.WebsiteHost = v.(string)
+       }
+       if v, ok := d.GetOk("virus"); ok {
+               test.Virus = v.(int)
+       }
+       if v, ok := d.GetOk("find_string"); ok {
+               test.FindString = v.(string)
+       }
+       if v, ok := d.GetOk("do_not_find"); ok {
+               test.DoNotFind = v.(bool)
+       }
+       if v, ok := d.GetOk("real_browser"); ok {
+               test.RealBrowser = v.(int)
+       }
+       if v, ok := d.GetOk("test_tags"); ok {
+               test.TestTags = v.(string)
+       }
+       if v, ok := d.GetOk("status_codes"); ok {
+               test.StatusCodes = v.(string)
+       }
+       if v, ok := d.GetOk("use_jar"); ok {
+               test.UseJar = v.(int)
+       }
+       if v, ok := d.GetOk("post_raw"); ok {
+               test.PostRaw = v.(string)
+       }
+       if v, ok := d.GetOk("final_endpoint"); ok {
+               test.FinalEndpoint = v.(string)
+       }
+       if v, ok := d.GetOk("follow_redirect"); ok {
+               test.FollowRedirect = v.(bool)
+       }
 
        return test
 }