-
Notifications
You must be signed in to change notification settings - Fork 153
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
This reverts commit eca1f46. Signed-off-by: Shinnosuke Sawada-Dazai <shin@warashi.dev>
- Loading branch information
Showing
240 changed files
with
35,251 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
// Copyright 2024 The PipeCD Authors. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
// Package http provides a way to analyze with http requests. | ||
// This allows you to do smoke tests, load tests and so on, at your leisure. | ||
package http | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
"net/http" | ||
"time" | ||
|
||
"github.com/pipe-cd/pipecd/pkg/config" | ||
) | ||
|
||
const ( | ||
ProviderType = "HTTP" | ||
defaultTimeout = 30 * time.Second | ||
) | ||
|
||
type Provider struct { | ||
client *http.Client | ||
} | ||
|
||
func (p *Provider) Type() string { | ||
return ProviderType | ||
} | ||
|
||
func NewProvider(timeout time.Duration) *Provider { | ||
if timeout == 0 { | ||
timeout = defaultTimeout | ||
} | ||
return &Provider{ | ||
client: &http.Client{Timeout: timeout}, | ||
} | ||
} | ||
|
||
// Run sends an HTTP request and then evaluate whether the response is expected one. | ||
func (p *Provider) Run(ctx context.Context, cfg *config.AnalysisHTTP) (bool, string, error) { | ||
req, err := p.makeRequest(ctx, cfg) | ||
if err != nil { | ||
return false, "", err | ||
} | ||
|
||
res, err := p.client.Do(req) | ||
if err != nil { | ||
return false, "", err | ||
} | ||
defer res.Body.Close() | ||
|
||
if res.StatusCode != cfg.ExpectedCode { | ||
return false, "", fmt.Errorf("unexpected status code %d", res.StatusCode) | ||
} | ||
// TODO: Decide how to check if the body is expected one. | ||
return true, "", nil | ||
} | ||
|
||
func (p *Provider) makeRequest(ctx context.Context, cfg *config.AnalysisHTTP) (*http.Request, error) { | ||
req, err := http.NewRequestWithContext(ctx, cfg.Method, cfg.URL, nil) | ||
if err != nil { | ||
return nil, err | ||
} | ||
req.Header = make(http.Header, len(cfg.Headers)) | ||
for _, h := range cfg.Headers { | ||
req.Header.Set(h.Key, h.Value) | ||
} | ||
return req, nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
// Copyright 2024 The PipeCD Authors. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package factory | ||
|
||
import ( | ||
"fmt" | ||
"os" | ||
|
||
"go.uber.org/zap" | ||
|
||
"github.com/pipe-cd/pipecd/pkg/app/pipedv1/analysisprovider/log" | ||
"github.com/pipe-cd/pipecd/pkg/app/pipedv1/analysisprovider/log/stackdriver" | ||
"github.com/pipe-cd/pipecd/pkg/config" | ||
"github.com/pipe-cd/pipecd/pkg/model" | ||
) | ||
|
||
// NewProvider generates an appropriate provider according to analysis provider config. | ||
func NewProvider(providerCfg *config.PipedAnalysisProvider, logger *zap.Logger) (provider log.Provider, err error) { | ||
switch providerCfg.Type { | ||
case model.AnalysisProviderStackdriver: | ||
cfg := providerCfg.StackdriverConfig | ||
sa, err := os.ReadFile(cfg.ServiceAccountFile) | ||
if err != nil { | ||
return nil, err | ||
} | ||
provider, err = stackdriver.NewProvider(sa) | ||
if err != nil { | ||
return nil, err | ||
} | ||
|
||
default: | ||
return nil, fmt.Errorf("any of providers config not found") | ||
} | ||
return provider, nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
// Copyright 2024 The PipeCD Authors. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package log | ||
|
||
import ( | ||
"context" | ||
) | ||
|
||
// Provider represents a client for log provider which provides logs for analysis. | ||
type Provider interface { | ||
Type() string | ||
// Evaluate runs the given query against the log provider, | ||
// and then checks if there is at least one error log. | ||
// Returns the result reason if non-error occurred. | ||
Evaluate(ctx context.Context, query string) (result bool, reason string, err error) | ||
} |
43 changes: 43 additions & 0 deletions
43
pkg/app/pipedv1/analysisprovider/log/stackdriver/stackdriver.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
// Copyright 2024 The PipeCD Authors. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package stackdriver | ||
|
||
import ( | ||
"context" | ||
"time" | ||
) | ||
|
||
const ProviderType = "StackdriverLogging" | ||
|
||
// Provider is a client for stackdriver. | ||
type Provider struct { | ||
serviceAccount []byte | ||
|
||
timeout time.Duration | ||
} | ||
|
||
func NewProvider(serviceAccount []byte) (*Provider, error) { | ||
return &Provider{ | ||
serviceAccount: serviceAccount, | ||
}, nil | ||
} | ||
|
||
func (p *Provider) Type() string { | ||
return ProviderType | ||
} | ||
|
||
func (p *Provider) Evaluate(ctx context.Context, query string) (bool, string, error) { | ||
return false, "", nil | ||
} |
Oops, something went wrong.