Commit 56ab66f6 authored by Andrei Mihu's avatar Andrei Mihu
Browse files

Refactor and add missing license headers.

parent f4aa60e8
Loading
Loading
Loading
Loading
+16 −1
Original line number Diff line number Diff line
// Copyright 2022 The Nakama Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package server

import (
	"testing"

	"github.com/gofrs/uuid"
	"go.uber.org/zap"
	"testing"
)

// should add and remove from PartyMatchmaker
+0 −14
Original line number Diff line number Diff line
@@ -112,17 +112,3 @@ func HashFromId(id uuid.UUID) [6]byte {
	copy(idArr[:], id[10:])
	return idArr
}

type testStreamManager struct{}

func (t testStreamManager) UserJoin(stream PresenceStream, userID, sessionID uuid.UUID, hidden, persistence bool, status string) (bool, bool, error) {
	return true, true, nil
}

func (t testStreamManager) UserUpdate(stream PresenceStream, userID, sessionID uuid.UUID, hidden, persistence bool, status string) (bool, error) {
	return true, nil
}

func (t testStreamManager) UserLeave(stream PresenceStream, userID, sessionID uuid.UUID) error {
	return nil
}
+31 −0
Original line number Diff line number Diff line
// Copyright 2022 The Nakama Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package server

import "github.com/gofrs/uuid"

type testStreamManager struct{}

func (t testStreamManager) UserJoin(stream PresenceStream, userID, sessionID uuid.UUID, hidden, persistence bool, status string) (bool, bool, error) {
	return true, true, nil
}

func (t testStreamManager) UserUpdate(stream PresenceStream, userID, sessionID uuid.UUID, hidden, persistence bool, status string) (bool, error) {
	return true, nil
}

func (t testStreamManager) UserLeave(stream PresenceStream, userID, sessionID uuid.UUID) error {
	return nil
}