blob: fa3a723214c39e9ab5db29ae3f8f9cb8080824aa [file] [log] [blame]
Ewout van Bekkum126e0112021-03-12 10:59:49 -08001// Copyright 2020 The Pigweed Authors
2//
3// Licensed under the Apache License, Version 2.0 (the "License"); you may not
4// use this file except in compliance with the License. You may obtain a copy of
5// the License at
6//
7// https://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12// License for the specific language governing permissions and limitations under
13// the License.
14
15#include "gtest/gtest.h"
16#include "pw_sync/interrupt_spin_lock.h"
17
18namespace pw::sync {
19namespace {
20
21extern "C" {
22
23// Functions defined in interrupt_spin_lock_facade_test_c.c which call the API
24// from C.
25void pw_sync_InterruptSpinLock_CallLock(
26 pw_sync_InterruptSpinLock* interrupt_spin_lock);
27bool pw_sync_InterruptSpinLock_CallTryLock(
28 pw_sync_InterruptSpinLock* interrupt_spin_lock);
29void pw_sync_InterruptSpinLock_CallUnlock(
30 pw_sync_InterruptSpinLock* interrupt_spin_lock);
31
32} // extern "C"
33
34TEST(InterruptSpinLock, LockUnlock) {
35 pw::sync::InterruptSpinLock interrupt_spin_lock;
36 interrupt_spin_lock.lock();
37 interrupt_spin_lock.unlock();
38}
39
Ewout van Bekkum2fed9992021-11-23 11:49:02 -080040// TODO(pwbug/291): Add real concurrency tests once we have pw::thread on SMP
41// systems given that uniprocessor systems cannot fail to acquire an ISL.
Ewout van Bekkum126e0112021-03-12 10:59:49 -080042
43InterruptSpinLock static_interrupt_spin_lock;
44TEST(InterruptSpinLock, LockUnlockStatic) {
45 static_interrupt_spin_lock.lock();
Ewout van Bekkum2fed9992021-11-23 11:49:02 -080046 // TODO(pwbug/291): Ensure other cores fail to lock when its locked.
47 // EXPECT_FALSE(static_interrupt_spin_lock.try_lock());
Ewout van Bekkum126e0112021-03-12 10:59:49 -080048 static_interrupt_spin_lock.unlock();
49}
50
51TEST(InterruptSpinLock, TryLockUnlock) {
52 pw::sync::InterruptSpinLock interrupt_spin_lock;
Ewout van Bekkumcc9ef832021-04-08 08:51:16 -070053 const bool locked = interrupt_spin_lock.try_lock();
54 EXPECT_TRUE(locked);
55 if (locked) {
Ewout van Bekkum2fed9992021-11-23 11:49:02 -080056 // TODO(pwbug/291): Ensure other cores fail to lock when its locked.
57 // EXPECT_FALSE(interrupt_spin_lock.try_lock());
Ewout van Bekkumcc9ef832021-04-08 08:51:16 -070058 interrupt_spin_lock.unlock();
59 }
Ewout van Bekkum126e0112021-03-12 10:59:49 -080060}
61
Ewout van Bekkumbaf2fdc2021-09-09 14:11:51 -070062TEST(VirtualInterruptSpinLock, LockUnlock) {
63 pw::sync::VirtualInterruptSpinLock interrupt_spin_lock;
64 interrupt_spin_lock.lock();
Ewout van Bekkum2fed9992021-11-23 11:49:02 -080065 // TODO(pwbug/291): Ensure other cores fail to lock when its locked.
Ewout van Bekkumbaf2fdc2021-09-09 14:11:51 -070066 // EXPECT_FALSE(interrupt_spin_lock.try_lock());
67 interrupt_spin_lock.unlock();
68}
69
70VirtualInterruptSpinLock static_virtual_interrupt_spin_lock;
71TEST(VirtualInterruptSpinLock, LockUnlockStatic) {
72 static_virtual_interrupt_spin_lock.lock();
Ewout van Bekkum2fed9992021-11-23 11:49:02 -080073 // TODO(pwbug/291): Ensure other cores fail to lock when its locked.
Ewout van Bekkumbaf2fdc2021-09-09 14:11:51 -070074 // EXPECT_FALSE(static_virtual_interrupt_spin_lock.try_lock());
75 static_virtual_interrupt_spin_lock.unlock();
76}
77
Ewout van Bekkum126e0112021-03-12 10:59:49 -080078TEST(InterruptSpinLock, LockUnlockInC) {
79 pw::sync::InterruptSpinLock interrupt_spin_lock;
80 pw_sync_InterruptSpinLock_CallLock(&interrupt_spin_lock);
81 pw_sync_InterruptSpinLock_CallUnlock(&interrupt_spin_lock);
82}
83
84TEST(InterruptSpinLock, TryLockUnlockInC) {
85 pw::sync::InterruptSpinLock interrupt_spin_lock;
86 ASSERT_TRUE(pw_sync_InterruptSpinLock_CallTryLock(&interrupt_spin_lock));
Ewout van Bekkum2fed9992021-11-23 11:49:02 -080087 // TODO(pwbug/291): Ensure other cores fail to lock when its locked.
88 // EXPECT_FALSE(pw_sync_InterruptSpinLock_CallTryLock(&interrupt_spin_lock));
Ewout van Bekkum126e0112021-03-12 10:59:49 -080089 pw_sync_InterruptSpinLock_CallUnlock(&interrupt_spin_lock);
90}
91
92} // namespace
93} // namespace pw::sync