aboutsummaryrefslogtreecommitdiffstats
path: root/modules/util/io.go
blob: e5d7561beff630a2b0b6aa61cbf7f7a1c079880c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2021 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT

package util

import (
	"io"
)

// ReadAtMost reads at most len(buf) bytes from r into buf.
// It returns the number of bytes copied. n is only less than len(buf) if r provides fewer bytes.
// If EOF occurs while reading, err will be nil.
func ReadAtMost(r io.Reader, buf []byte) (n int, err error) {
	n, err = io.ReadFull(r, buf)
	if err == io.EOF || err == io.ErrUnexpectedEOF {
		err = nil
	}
	return n, err
}
ss="p">, req, http.StatusNotFound) // invalidate cached cookies for user2, for subsequent tests delete(loginSessionCache, "user2") }