OSDN Git Service

test: move vaInitialize/vaTerminate to a global test environment
[android-x86/hardware-intel-common-vaapi.git] / test / i965_test_environment.cpp
1 /*
2  * Copyright (C) 2016 Intel Corporation. All Rights Reserved.
3  *
4  * Permission is hereby granted, free of charge, to any person obtaining a
5  * copy of this software and associated documentation files (the
6  * "Software"), to deal in the Software without restriction, including
7  * without limitation the rights to use, copy, modify, merge, publish,
8  * distribute, sub license, and/or sell copies of the Software, and to
9  * permit persons to whom the Software is furnished to do so, subject to
10  * the following conditions:
11  *
12  * The above copyright notice and this permission notice (including the
13  * next paragraph) shall be included in all copies or substantial portions
14  * of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
17  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
19  * IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
20  * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
21  * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
22  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23  */
24
25 #include "i965_test_environment.h"
26
27 #include <fcntl.h> // for O_RDWR
28 #include <unistd.h> // for close()
29 #include <va/va_drm.h>
30
31 I965TestEnvironment* I965TestEnvironment::instance()
32 {
33     static I965TestEnvironment* e = new I965TestEnvironment;
34     return e;
35 }
36
37 I965TestEnvironment::I965TestEnvironment()
38     : ::testing::Environment()
39     , m_handle(-1)
40     , m_vaDisplay(NULL)
41 {
42     return;
43 }
44
45 void I965TestEnvironment::SetUp()
46 {
47     ASSERT_EQ(-1, m_handle);
48     ASSERT_PTR_NULL(m_vaDisplay);
49
50     m_handle = open("/dev/dri/renderD128", O_RDWR);
51     if (m_handle < 0)
52         m_handle = open("/dev/dri/card0", O_RDWR);
53
54     m_vaDisplay = vaGetDisplayDRM(m_handle);
55
56     ASSERT_PTR(m_vaDisplay);
57
58     setenv("LIBVA_DRIVERS_PATH", TEST_VA_DRIVERS_PATH, 1);
59     setenv("LIBVA_DRIVER_NAME", "i965", 1);
60
61     int major, minor;
62     ASSERT_STATUS(vaInitialize(*this, &major, &minor));
63
64     EXPECT_EQ(VA_MAJOR_VERSION, major);
65     EXPECT_EQ(VA_MINOR_VERSION, minor);
66
67     VADriverContextP context(*this);
68     ASSERT_PTR(context);
69
70     const std::string vendor(context->str_vendor);
71
72     ::testing::Test::RecordProperty("driver_vendor", vendor);
73     ::testing::Test::RecordProperty("vaapi_version", VA_VERSION_S);
74 }
75
76 void I965TestEnvironment::TearDown()
77 {
78     if (m_vaDisplay)
79         EXPECT_STATUS(vaTerminate(m_vaDisplay));
80
81     if (m_handle >= 0)
82         close(m_handle);
83
84     m_handle = -1;
85     m_vaDisplay = NULL;
86 }