• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

mendersoftware / mender-server / 2030701598

09 Sep 2025 09:31PM UTC coverage: 65.606% (+0.3%) from 65.283%
2030701598

Pull #946

gitlab-ci

web-flow
chore: bump vite from 7.0.6 to 7.1.5 in /frontend

Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 7.0.6 to 7.1.5.
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v7.1.5/packages/vite)

---
updated-dependencies:
- dependency-name: vite
  dependency-version: 7.1.5
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Pull Request #946: chore: bump vite from 7.0.6 to 7.1.5 in /frontend

28607 of 43604 relevant lines covered (65.61%)

1.46 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

53.33
/backend/pkg/contenttype/middleware.go
1
package contenttype
2

3
import (
4
        "mime"
5
        "net/http"
6
        "slices"
7

8
        "github.com/gin-gonic/gin"
9
        "github.com/pkg/errors"
10

11
        "github.com/mendersoftware/mender-server/pkg/rest.utils"
12
)
13

14
func CheckJSON() gin.HandlerFunc {
5✔
15
        return Middleware("application/json")
5✔
16
}
5✔
17

18
func Middleware(contentTypes ...string) gin.HandlerFunc {
5✔
19
        if len(contentTypes) == 0 {
5✔
20
                panic("contenttype.Middleware initialized with no parameters")
×
21
        }
22

23
        errMsg := "Bad Content-Type, expected "
5✔
24
        for i, ctype := range contentTypes {
10✔
25
                if i > 0 {
7✔
26
                        errMsg += ", "
2✔
27
                }
2✔
28
                errMsg += "'" + ctype + "'"
5✔
29
        }
30

31
        return func(c *gin.Context) {
10✔
32
                if c.Request.ContentLength > 0 {
10✔
33
                        contentType, _, err := mime.ParseMediaType(c.GetHeader("Content-Type"))
5✔
34
                        if err != nil {
5✔
35
                                rest.RenderError(c,
×
36
                                        http.StatusBadRequest,
×
37
                                        errors.WithMessage(err, "Invalid value for Content-Type header"),
×
38
                                )
×
39
                                c.Abort()
×
40
                                return
×
41
                        }
×
42

43
                        if !slices.Contains(contentTypes, contentType) {
5✔
44
                                rest.RenderError(c,
×
45
                                        http.StatusUnsupportedMediaType,
×
46
                                        errors.New(errMsg),
×
47
                                )
×
48
                                c.Abort()
×
49
                        }
×
50
                }
51
        }
52
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc