| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- /*
- * Copyright (c) 2016, Psiphon Inc.
- * All rights reserved.
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
- package psiphon
- import (
- "context"
- "encoding/json"
- "io/ioutil"
- "os/exec"
- "testing"
- )
- type Diagnostics struct {
- Feedback struct {
- Message struct {
- Text string `json:"text"`
- }
- Email string `json:"email"`
- }
- Metadata struct {
- Id string `json:"id"`
- Platform string `json:"platform"`
- Version int `json:"version"`
- }
- }
- func TestFeedbackUpload(t *testing.T) {
- configFileContents, err := ioutil.ReadFile("controller_test.config")
- if err != nil {
- // Skip, don't fail, if config file is not present
- t.Skipf("error loading configuration file: %s", err)
- }
- // Load config, configure data root directory and commit it
- config, err := LoadConfig(configFileContents)
- if err != nil {
- t.Fatalf("error loading configuration file: %s", err)
- }
- if config.ClientPlatform == "" {
- config.ClientPlatform = testClientPlatform
- }
- testDataDirName, err := ioutil.TempDir("", "psiphon-feedback-test")
- if err != nil {
- t.Fatalf("TempDir failed: %s", err)
- }
- config.DataRootDirectory = testDataDirName
- err = config.Commit(true)
- if err != nil {
- t.Fatalf("error committing configuration file: %s", err)
- }
- shortRevHash, err := exec.Command("git", "rev-parse", "--short", "HEAD").Output()
- if err != nil {
- // Log, don't fail, if git rev is not available
- t.Logf("error loading git revision file: %s", err)
- shortRevHash = []byte("unknown")
- }
- // Construct feedback data which can be verified later
- diagnostics := Diagnostics{}
- diagnostics.Feedback.Message.Text = "Test feedback from feedback_test.go, revision: " + string(shortRevHash)
- diagnostics.Metadata.Id = "0000000000000000"
- diagnostics.Metadata.Platform = "android"
- diagnostics.Metadata.Version = 4
- diagnosticData, err := json.Marshal(diagnostics)
- if err != nil {
- t.Fatalf("Marshal failed: %s", err)
- }
- err = SendFeedback(context.Background(), config, string(diagnosticData), "")
- if err != nil {
- t.Fatalf("SendFeedback failed: %s", err)
- }
- }
|