refactor(stats): slim final daily mileage table
This commit is contained in:
@@ -12,25 +12,22 @@ import (
|
||||
"github.com/DATA-DOG/go-sqlmock"
|
||||
)
|
||||
|
||||
const dailyMetricSelectPattern = "SELECT vin, stat_date, protocol, source_id, daily_mileage_km, latest_total_mileage_km, updated_at FROM vehicle_daily_mileage"
|
||||
|
||||
func TestMetricRepositoryQueriesDailyMetricsWithFilters(t *testing.T) {
|
||||
db, mock, err := sqlmock.New()
|
||||
if err != nil {
|
||||
t.Fatalf("sqlmock.New() error = %v", err)
|
||||
}
|
||||
defer db.Close()
|
||||
mock.ExpectQuery("SELECT vin, stat_date, protocol, daily_mileage_km, first_total_mileage_km, latest_total_mileage_km, trusted_source_key, trusted_phone, trusted_source_endpoint, sample_count, updated_at FROM vehicle_daily_mileage").
|
||||
mock.ExpectQuery(dailyMetricSelectPattern).
|
||||
WithArgs("LKLG7C4E3NA774736", "JT808", "2026-07-01", "2026-07-01", 20, 0).
|
||||
WillReturnRows(sqlmock.NewRows([]string{
|
||||
"vin", "stat_date", "protocol", "daily_mileage_km",
|
||||
"first_total_mileage_km", "latest_total_mileage_km",
|
||||
"trusted_source_key", "trusted_phone", "trusted_source_endpoint",
|
||||
"sample_count",
|
||||
"updated_at",
|
||||
"vin", "stat_date", "protocol", "source_id", "daily_mileage_km",
|
||||
"latest_total_mileage_km", "updated_at",
|
||||
}).AddRow(
|
||||
"LKLG7C4E3NA774736", time.Date(2026, 7, 1, 0, 0, 0, 0, time.FixedZone("Asia/Shanghai", 8*3600)), "JT808", 12.3,
|
||||
12345.6, 12357.9,
|
||||
nil, nil, nil,
|
||||
13, time.Date(2026, 7, 1, 23, 9, 36, 0, time.FixedZone("Asia/Shanghai", 8*3600)),
|
||||
"LKLG7C4E3NA774736", time.Date(2026, 7, 1, 0, 0, 0, 0, time.FixedZone("Asia/Shanghai", 8*3600)), "JT808", 3, 12.3,
|
||||
12357.9, time.Date(2026, 7, 1, 23, 9, 36, 0, time.FixedZone("Asia/Shanghai", 8*3600)),
|
||||
))
|
||||
|
||||
repository := NewMetricRepository(db)
|
||||
@@ -50,6 +47,9 @@ func TestMetricRepositoryQueriesDailyMetricsWithFilters(t *testing.T) {
|
||||
if rows[0].DailyMileageKM != 12.3 {
|
||||
t.Fatalf("unexpected row: %#v", rows[0])
|
||||
}
|
||||
if rows[0].SourceID == nil || *rows[0].SourceID != 3 {
|
||||
t.Fatalf("source id = %#v", rows[0].SourceID)
|
||||
}
|
||||
if rows[0].StatDate != "2026-07-01" || rows[0].UpdatedAt != "2026-07-01 23:09:36" {
|
||||
t.Fatalf("unexpected time formatting: %#v", rows[0])
|
||||
}
|
||||
@@ -58,23 +58,19 @@ func TestMetricRepositoryQueriesDailyMetricsWithFilters(t *testing.T) {
|
||||
}
|
||||
}
|
||||
|
||||
func TestMetricQueryReturnsSelectedSourceFields(t *testing.T) {
|
||||
func TestMetricQueryReturnsSelectedSourceID(t *testing.T) {
|
||||
db, mock, err := sqlmock.New()
|
||||
if err != nil {
|
||||
t.Fatalf("sqlmock.New() error = %v", err)
|
||||
}
|
||||
defer db.Close()
|
||||
mock.ExpectQuery("SELECT vin, stat_date, protocol, daily_mileage_km, first_total_mileage_km, latest_total_mileage_km, trusted_source_key, trusted_phone, trusted_source_endpoint, sample_count, updated_at FROM vehicle_daily_mileage").
|
||||
mock.ExpectQuery(dailyMetricSelectPattern).
|
||||
WillReturnRows(sqlmock.NewRows([]string{
|
||||
"vin", "stat_date", "protocol", "daily_mileage_km",
|
||||
"first_total_mileage_km", "latest_total_mileage_km",
|
||||
"trusted_source_key", "trusted_phone", "trusted_source_endpoint",
|
||||
"sample_count", "updated_at",
|
||||
"vin", "stat_date", "protocol", "source_id", "daily_mileage_km",
|
||||
"latest_total_mileage_km", "updated_at",
|
||||
}).AddRow(
|
||||
"LA9GG64L7PBAF4001", "2026-07-08", "JT808", 23.1,
|
||||
4100.8, 4123.9,
|
||||
"JT808:13307765812@115.231.168.135", "13307765812", "115.231.168.135:20215",
|
||||
1, "2026-07-08 13:30:57",
|
||||
"LA9GG64L7PBAF4001", "2026-07-08", "JT808", 2, 23.1,
|
||||
4123.9, "2026-07-08 13:30:57",
|
||||
))
|
||||
|
||||
repo := NewMetricRepository(db)
|
||||
@@ -86,8 +82,8 @@ func TestMetricQueryReturnsSelectedSourceFields(t *testing.T) {
|
||||
if err != nil {
|
||||
t.Fatalf("Query() error = %v", err)
|
||||
}
|
||||
if got[0].TrustedSourceKey == nil || *got[0].TrustedSourceKey != "JT808:13307765812@115.231.168.135" {
|
||||
t.Fatalf("trusted source = %#v", got[0].TrustedSourceKey)
|
||||
if got[0].SourceID == nil || *got[0].SourceID != 2 {
|
||||
t.Fatalf("source id = %#v", got[0].SourceID)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -100,19 +96,14 @@ func TestMetricHandlerReturnsDailyMetrics(t *testing.T) {
|
||||
mock.ExpectQuery("SELECT COUNT\\(\\*\\) FROM vehicle_daily_mileage").
|
||||
WithArgs("LB9A32A21R0LS1707", "GB32960", "2020-07-01", "2020-07-01").
|
||||
WillReturnRows(sqlmock.NewRows([]string{"total"}).AddRow(42))
|
||||
mock.ExpectQuery("SELECT vin, stat_date, protocol, daily_mileage_km, first_total_mileage_km, latest_total_mileage_km, trusted_source_key, trusted_phone, trusted_source_endpoint, sample_count, updated_at FROM vehicle_daily_mileage").
|
||||
mock.ExpectQuery(dailyMetricSelectPattern).
|
||||
WithArgs("LB9A32A21R0LS1707", "GB32960", "2020-07-01", "2020-07-01", 50, 0).
|
||||
WillReturnRows(sqlmock.NewRows([]string{
|
||||
"vin", "stat_date", "protocol", "daily_mileage_km",
|
||||
"first_total_mileage_km", "latest_total_mileage_km",
|
||||
"trusted_source_key", "trusted_phone", "trusted_source_endpoint",
|
||||
"sample_count",
|
||||
"updated_at",
|
||||
"vin", "stat_date", "protocol", "source_id", "daily_mileage_km",
|
||||
"latest_total_mileage_km", "updated_at",
|
||||
}).AddRow(
|
||||
"LB9A32A21R0LS1707", "2020-07-01", "GB32960", 0.0,
|
||||
53490.9, 53490.9,
|
||||
nil, nil, nil,
|
||||
3, "2026-07-01 22:28:25",
|
||||
"LB9A32A21R0LS1707", "2020-07-01", "GB32960", 1, 0.0,
|
||||
53490.9, "2026-07-01 22:28:25",
|
||||
))
|
||||
|
||||
handler := NewMetricHandler(NewMetricRepository(db))
|
||||
@@ -144,14 +135,11 @@ func TestMetricHandlerReturnsEmptyItemsArrayWhenNoRows(t *testing.T) {
|
||||
t.Fatalf("sqlmock.New() error = %v", err)
|
||||
}
|
||||
defer db.Close()
|
||||
mock.ExpectQuery("SELECT vin, stat_date, protocol, daily_mileage_km, first_total_mileage_km, latest_total_mileage_km, trusted_source_key, trusted_phone, trusted_source_endpoint, sample_count, updated_at FROM vehicle_daily_mileage").
|
||||
mock.ExpectQuery(dailyMetricSelectPattern).
|
||||
WithArgs("YUTONG_MQTT", 50, 0).
|
||||
WillReturnRows(sqlmock.NewRows([]string{
|
||||
"vin", "stat_date", "protocol", "daily_mileage_km",
|
||||
"first_total_mileage_km", "latest_total_mileage_km",
|
||||
"trusted_source_key", "trusted_phone", "trusted_source_endpoint",
|
||||
"sample_count",
|
||||
"updated_at",
|
||||
"vin", "stat_date", "protocol", "source_id", "daily_mileage_km",
|
||||
"latest_total_mileage_km", "updated_at",
|
||||
}))
|
||||
|
||||
handler := NewMetricHandler(NewMetricRepository(db))
|
||||
@@ -178,19 +166,14 @@ func TestMetricHandlerSkipsTotalCountByDefault(t *testing.T) {
|
||||
t.Fatalf("sqlmock.New() error = %v", err)
|
||||
}
|
||||
defer db.Close()
|
||||
mock.ExpectQuery("SELECT vin, stat_date, protocol, daily_mileage_km, first_total_mileage_km, latest_total_mileage_km, trusted_source_key, trusted_phone, trusted_source_endpoint, sample_count, updated_at FROM vehicle_daily_mileage").
|
||||
mock.ExpectQuery(dailyMetricSelectPattern).
|
||||
WithArgs("JT808", 1, 0).
|
||||
WillReturnRows(sqlmock.NewRows([]string{
|
||||
"vin", "stat_date", "protocol", "daily_mileage_km",
|
||||
"first_total_mileage_km", "latest_total_mileage_km",
|
||||
"trusted_source_key", "trusted_phone", "trusted_source_endpoint",
|
||||
"sample_count",
|
||||
"updated_at",
|
||||
"vin", "stat_date", "protocol", "source_id", "daily_mileage_km",
|
||||
"latest_total_mileage_km", "updated_at",
|
||||
}).AddRow(
|
||||
"LKLG7C4E3NA774736", "2026-07-02", "JT808", 12.3,
|
||||
8792.8, 8805.1,
|
||||
nil, nil, nil,
|
||||
30, "2026-07-02 23:59:59",
|
||||
"LKLG7C4E3NA774736", "2026-07-02", "JT808", 3, 12.3,
|
||||
8805.1, "2026-07-02 23:59:59",
|
||||
))
|
||||
|
||||
handler := NewMetricHandler(NewMetricRepository(db))
|
||||
|
||||
Reference in New Issue
Block a user