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

Commit 0f82df8f authored by Kevin Rocard's avatar Kevin Rocard Committed by android-build-merger
Browse files

Merge "Audio VTS: Look for Audio policy config in all supported folders" into...

Merge "Audio VTS: Look for Audio policy config in all supported folders" into oc-dev am: 4f3c28ad am: b06f544d
am: ab19e162

Change-Id: Ia6e0c9abadfd15ccf283ef2ca920cecd8f2c25a4
parents 1c0e5e6b ab19e162
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);
        }
    }
}