Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5e745408 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Audio VTS: Look for Audio policy config in all supported folders" into oreo-vts-dev

parents b461eafa d6bcee40
Loading
Loading
Loading
Loading
+17 −2
Original line number Diff line number Diff line
@@ -14,9 +14,24 @@
 * limitations under the License.
 */

#include <string>
#include <unistd.h>

#include "utility/ValidateXml.h"

TEST(CheckConfig, audioPolicyConfigurationValidation) {
    ASSERT_VALID_XML("/vendor/etc/audio_policy_configuration.xml",
                     "/data/local/tmp/audio_policy_configuration.xsd");
    const char* configName = "audio_policy_configuration.xml";
    const char* possibleConfigLocations[] = {"/odm/etc", "/vendor/etc", "/system/etc"};
    const char* configSchemaPath = "/data/local/tmp/audio_policy_configuration.xsd";

    bool found = false;
    for (std::string folder : possibleConfigLocations) {
        const auto configPath = folder + '/' + configName;
        if (access(configPath.c_str(), R_OK) == 0) {
            ASSERT_FALSE(found) << "Multiple " << configName << " found in "
                                << ::testing::PrintToString(possibleConfigLocations);
            found = true;
            ASSERT_VALID_XML(configPath.c_str(), configSchemaPath);
        }
    }
}