aboutsummaryrefslogtreecommitdiffstats
path: root/routers/install/routes_test.go
blob: e3d2a4246740987e6a89c5558f2ea1f4972aa26b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright 2021 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT

package install

import (
	"context"
	"testing"

	"github.com/stretchr/testify/assert"
)

func TestRoutes(t *testing.T) {
	// TODO: this test seems not really testing the handlers
	ctx, cancel := context.WithCancel(context.Background())
	defer cancel()
	base := Routes(ctx)
	assert.NotNil(t, base)
	r := base.R.Routes()[1]
	routes := r.SubRoutes.Routes()[0]
	assert.EqualValues(t, "/", routes.Pattern)
	assert.Nil(t, routes.SubRoutes)
	assert.Len(t, routes.Handlers, 2)
}