test_plugins
3DEqualizer plugin tests.
These test need to be run in 3DEqualizer.
Container dataclass
Container dataclass.
Source code in client/ayon_equalizer/test/test_plugins.py
18 19 20 21 22 23 24 25 26 | |
Tde4Mock
Simple class to mock few 3dequalizer functions.
Just to run the test outside the host itself.
Source code in client/ayon_equalizer/test/test_plugins.py
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | |
getProjectNotes()
Mock function to get project notes.
Source code in client/ayon_equalizer/test/test_plugins.py
45 46 47 | |
isProjectUpToDate()
Mock function to check if project is up to date.
Source code in client/ayon_equalizer/test/test_plugins.py
37 38 39 | |
setProjectNotes(notes)
Mock function to set project notes.
Source code in client/ayon_equalizer/test/test_plugins.py
41 42 43 | |
TestEqualizer
Bases: TestCase
Test 3DEqualizer plugin.
Source code in client/ayon_equalizer/test/test_plugins.py
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 | |
test_context_data()
Test context data.
Source code in client/ayon_equalizer/test/test_plugins.py
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 | |
add_container(container)
Add container to context data.
Source code in client/ayon_equalizer/test/test_plugins.py
79 80 81 82 83 84 85 86 87 88 89 90 91 92 | |
get_containers()
Get containers from context data.
Source code in client/ayon_equalizer/test/test_plugins.py
74 75 76 | |
get_context_data()
Get context data from project notes.
Source code in client/ayon_equalizer/test/test_plugins.py
53 54 55 56 | |
update_context_data(data, _)
Update context data in project notes.
Source code in client/ayon_equalizer/test/test_plugins.py
59 60 61 62 63 64 65 66 67 68 69 70 71 | |