1 /* 2 * Copyright (C) 2019 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 #include <gtest/gtest.h> 18 19 #include <ion/ion.h> 20 #include "ion_test_fixture.h" 21 22 class HeapQuery : public IonTest {}; 23 TEST_F(HeapQuery,AtleastOneHeap)24TEST_F(HeapQuery, AtleastOneHeap) { 25 ASSERT_GT(ion_heaps.size(), 0); 26 } 27 28 // TODO: Adjust this test to account for the range of valid carveout and DMA heap ids. TEST_F(HeapQuery,HeapIdVerify)29TEST_F(HeapQuery, HeapIdVerify) { 30 for (const auto& heap : ion_heaps) { 31 SCOPED_TRACE(::testing::Message() << "Invalid id for heap:" << heap.name << ":" << heap.type 32 << ":" << heap.heap_id); 33 switch (heap.type) { 34 case ION_HEAP_TYPE_SYSTEM: 35 ASSERT_TRUE((1 << heap.heap_id) & ION_HEAP_SYSTEM_MASK); 36 break; 37 case ION_HEAP_TYPE_DMA: 38 ASSERT_TRUE((1 << heap.heap_id) & ION_HEAP_TYPE_DMA_MASK); 39 break; 40 } 41 } 42 } 43