|
| 1 | +/* |
| 2 | + * SPDX-License-Identifier: GPL-3.0-only |
| 3 | + * MuseScore-CLA-applies |
| 4 | + * |
| 5 | + * MuseScore |
| 6 | + * Music Composition & Notation |
| 7 | + * |
| 8 | + * Copyright (C) 2023 MuseScore BVBA and others |
| 9 | + * |
| 10 | + * This program is free software: you can redistribute it and/or modify |
| 11 | + * it under the terms of the GNU General Public License version 3 as |
| 12 | + * published by the Free Software Foundation. |
| 13 | + * |
| 14 | + * This program is distributed in the hope that it will be useful, |
| 15 | + * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 16 | + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 17 | + * GNU General Public License for more details. |
| 18 | + * |
| 19 | + * You should have received a copy of the GNU General Public License |
| 20 | + * along with this program. If not, see <https://www.gnu.org/licenses/>. |
| 21 | + */ |
| 22 | + |
| 23 | +#include <gtest/gtest.h> |
| 24 | + |
| 25 | +#include "audio/audioutils.h" |
| 26 | + |
| 27 | +using namespace mu::audio; |
| 28 | + |
| 29 | +namespace mu::audio { |
| 30 | +class Audio_AudioUtilsTest : public ::testing::Test |
| 31 | +{ |
| 32 | +public: |
| 33 | +}; |
| 34 | +} |
| 35 | + |
| 36 | +TEST_F(Audio_AudioUtilsTest, AudioPluginTypeFromCategoriesString) |
| 37 | +{ |
| 38 | + EXPECT_EQ(AudioPluginType::Fx, audioPluginTypeFromCategoriesString(u"Fx|Delay")); |
| 39 | + EXPECT_EQ(AudioPluginType::Fx, audioPluginTypeFromCategoriesString(u"Test|Fx")); |
| 40 | + |
| 41 | + EXPECT_EQ(AudioPluginType::Instrument, audioPluginTypeFromCategoriesString(u"Instrument|Test")); |
| 42 | + EXPECT_EQ(AudioPluginType::Instrument, audioPluginTypeFromCategoriesString(u"Test|Instrument")); |
| 43 | + |
| 44 | + //! NOTE: "Instrument" has the highest priority for compatibility reasons |
| 45 | + EXPECT_EQ(AudioPluginType::Instrument, audioPluginTypeFromCategoriesString(u"Instrument|Fx|Test")); |
| 46 | + EXPECT_EQ(AudioPluginType::Instrument, audioPluginTypeFromCategoriesString(u"Fx|Instrument|Test")); |
| 47 | + |
| 48 | + EXPECT_EQ(AudioPluginType::Undefined, audioPluginTypeFromCategoriesString(u"Test")); |
| 49 | + EXPECT_EQ(AudioPluginType::Undefined, audioPluginTypeFromCategoriesString(u"FX|Test")); |
| 50 | + EXPECT_EQ(AudioPluginType::Undefined, audioPluginTypeFromCategoriesString(u"INSTRUMENT|Test")); |
| 51 | +} |
0 commit comments