aboutsummaryrefslogtreecommitdiffstats
path: root/temp/goal_handler_test.go
blob: 0641dca29c6b7dae164131a6612475daaa15a1ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
package handlers

import (
	"bytes"
	"encoding/json"
	"errors"
	"finance/backend/internal/database"
	"net/http"
	"net/http/httptest"
	"testing"

	"github.com/gin-gonic/gin"
	"github.com/stretchr/testify/assert"
	"gorm.io/gorm"
)

// setupTest sets up the test environment
func setupTest() (*gin.Context, *httptest.ResponseRecorder) {
	gin.SetMode(gin.TestMode)
	w := httptest.NewRecorder()
	c, _ := gin.CreateTestContext(w)
	c.Set("userID", uint(1))
	return c, w
}

// Test basic functionality of GetGoals
func TestGetGoals(t *testing.T) {
	// Save and restore the original DB
	originalDB := database.DB
	defer func() {
		database.DB = originalDB
	}()

	// Replace with a DB that returns success
	mockDB := &gorm.DB{
		Error: nil,
	}
	database.DB = mockDB

	c, w := setupTest()
	req := httptest.NewRequest("GET", "/goals", nil)
	c.Request = req

	handler := NewGoalHandler()
	handler.GetGoals(c)

	assert.Equal(t, http.StatusOK, w.Code)
}

// Test basic functionality of GetGoal
func TestGetGoal(t *testing.T) {
	// Save and restore the original DB
	originalDB := database.DB
	defer func() {
		database.DB = originalDB
	}()

	// Replace with a DB that returns success
	mockDB := &gorm.DB{
		Error: nil,
	}
	database.DB = mockDB

	c, w := setupTest()
	c.Params = []gin.Param{{Key: "id", Value: "1"}}
	req := httptest.NewRequest("GET", "/goals/1", nil)
	c.Request = req

	handler := NewGoalHandler()
	handler.GetGoal(c)

	assert.Equal(t, http.StatusOK, w.Code)
}

// Test basic functionality of CreateGoal
func TestCreateGoal(t *testing.T) {
	// Save and restore the original DB
	originalDB := database.DB
	defer func() {
		database.DB = originalDB
	}()

	// Replace with a DB that returns success
	mockDB := &gorm.DB{
		Error: nil,
	}
	database.DB = mockDB

	c, w := setupTest()

	input := CreateGoalInput{
		Name:          "Test Goal",
		TargetAmount:  1000,
		CurrentAmount: 500,
		TargetDate:    "2023-12-31",
		Status:        "Active",
	}

	inputJSON, _ := json.Marshal(input)
	req := httptest.NewRequest("POST", "/goals", bytes.NewBuffer(inputJSON))
	req.Header.Set("Content-Type", "application/json")
	c.Request = req

	handler := NewGoalHandler()
	handler.CreateGoal(c)

	assert.Equal(t, http.StatusCreated, w.Code)
}

// Test basic functionality of UpdateGoal
func TestUpdateGoal(t *testing.T) {
	// Save and restore the original DB
	originalDB := database.DB
	defer func() {
		database.DB = originalDB
	}()

	// Replace with a DB that returns success
	mockDB := &gorm.DB{
		Error: nil,
	}
	database.DB = mockDB

	c, w := setupTest()
	c.Params = []gin.Param{{Key: "id", Value: "1"}}

	input := UpdateGoalInput{
		Name:          "Updated Goal",
		TargetAmount:  2000,
		CurrentAmount: 1000,
		Status:        "Active",
	}

	inputJSON, _ := json.Marshal(input)
	req := httptest.NewRequest("PUT", "/goals/1", bytes.NewBuffer(inputJSON))
	req.Header.Set("Content-Type", "application/json")
	c.Request = req

	handler := NewGoalHandler()
	handler.UpdateGoal(c)

	assert.Equal(t, http.StatusOK, w.Code)
}

// Test basic functionality of UpdateGoalProgress
func TestUpdateGoalProgress(t *testing.T) {
	// Save and restore the original DB
	originalDB := database.DB
	defer func() {
		database.DB = originalDB
	}()

	// Replace with a DB that returns success
	mockDB := &gorm.DB{
		Error: nil,
	}
	database.DB = mockDB

	c, w := setupTest()
	c.Params = []gin.Param{{Key: "id", Value: "1"}}

	input := UpdateGoalProgressInput{
		CurrentAmount: 750,
	}

	inputJSON, _ := json.Marshal(input)
	req := httptest.NewRequest("PATCH", "/goals/1/progress", bytes.NewBuffer(inputJSON))
	req.Header.Set("Content-Type", "application/json")
	c.Request = req

	handler := NewGoalHandler()
	handler.UpdateGoalProgress(c)

	assert.Equal(t, http.StatusOK, w.Code)
}

// Test basic functionality of DeleteGoal
func TestDeleteGoal(t *testing.T) {
	// Save and restore the original DB
	originalDB := database.DB
	defer func() {
		database.DB = originalDB
	}()

	// Replace with a DB that returns success
	mockDB := &gorm.DB{
		Error: nil,
	}
	database.DB = mockDB

	c, w := setupTest()
	c.Params = []gin.Param{{Key: "id", Value: "1"}}
	req := httptest.NewRequest("DELETE", "/goals/1", nil)
	c.Request = req

	handler := NewGoalHandler()
	handler.DeleteGoal(c)

	assert.Equal(t, http.StatusOK, w.Code)
}

// Test error cases for each handler
func TestErrorCases(t *testing.T) {
	// Save and restore the original DB
	originalDB := database.DB
	defer func() {
		database.DB = originalDB
	}()

	// Replace with a DB that returns an error
	mockDB := &gorm.DB{
		Error: errors.New("database error"),
	}
	database.DB = mockDB

	// Test GetGoals with database error
	t.Run("GetGoals_DBError", func(t *testing.T) {
		c, w := setupTest()
		req := httptest.NewRequest("GET", "/goals", nil)
		c.Request = req

		handler := NewGoalHandler()
		handler.GetGoals(c)

		assert.Equal(t, http.StatusInternalServerError, w.Code)
	})

	// Test GetGoal with database error
	t.Run("GetGoal_DBError", func(t *testing.T) {
		c, w := setupTest()
		c.Params = []gin.Param{{Key: "id", Value: "1"}}
		req := httptest.NewRequest("GET", "/goals/1", nil)
		c.Request = req

		handler := NewGoalHandler()
		handler.GetGoal(c)

		assert.Equal(t, http.StatusNotFound, w.Code)
	})

	// Test CreateGoal with database error
	t.Run("CreateGoal_DBError", func(t *testing.T) {
		c, w := setupTest()

		input := CreateGoalInput{
			Name:          "Test Goal",
			TargetAmount:  1000,
			CurrentAmount: 500,
		}

		inputJSON, _ := json.Marshal(input)
		req := httptest.NewRequest("POST", "/goals", bytes.NewBuffer(inputJSON))
		req.Header.Set("Content-Type", "application/json")
		c.Request = req

		handler := NewGoalHandler()
		handler.CreateGoal(c)

		assert.Equal(t, http.StatusInternalServerError, w.Code)
	})
}