71 lines
2.4 KiB
C++
71 lines
2.4 KiB
C++
/*
|
|
* SPDX-License-Identifier: GPL-3.0-only
|
|
* MuseScore-CLA-applies
|
|
*
|
|
* MuseScore
|
|
* Music Composition & Notation
|
|
*
|
|
* Copyright (C) 2021 MuseScore BVBA and others
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 3 as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef __TESTUTILS_H__
|
|
#define __TESTUTILS_H__
|
|
|
|
#include "libmscore/engravingitem.h"
|
|
|
|
namespace Ms {
|
|
class MScore;
|
|
class MasterScore;
|
|
class Score;
|
|
|
|
//---------------------------------------------------------
|
|
// MTest
|
|
//---------------------------------------------------------
|
|
|
|
class MTest
|
|
{
|
|
protected:
|
|
Ms::MScore* mscore;
|
|
QString root; // root path of test source
|
|
Ms::Score* score;
|
|
EditData ed;
|
|
|
|
MTest();
|
|
Ms::MasterScore* readScore(const QString& name);
|
|
Ms::MasterScore* readCreatedScore(const QString& name);
|
|
bool saveScore(Ms::Score*, const QString& name) const;
|
|
bool savePdf(Ms::MasterScore*, const QString& name);
|
|
bool saveMusicXml(Ms::MasterScore*, const QString& name);
|
|
bool saveBraille(Ms::MasterScore*, const QString& name);
|
|
bool saveMimeData(QByteArray mimeData, const QString& saveName);
|
|
bool compareFiles(const QString& saveName, const QString& compareWith) const;
|
|
bool saveCompareScore(Ms::Score*, const QString& saveName, const QString& compareWith) const;
|
|
bool saveCompareMusicXmlScore(Ms::MasterScore*, const QString& saveName, const QString& compareWith);
|
|
bool saveCompareBrailleScore(MasterScore* score, const QString& saveName, const QString& compareWith);
|
|
bool saveCompareMimeData(QByteArray, const QString& saveName, const QString& compareWith);
|
|
Ms::EngravingItem* writeReadElement(Ms::EngravingItem* element);
|
|
void initMTest();
|
|
|
|
public:
|
|
static bool compareFilesFromPaths(const QString& f1, const QString& f2);
|
|
static void extractRootFile(const QString& zipFile, const QString& destination);
|
|
|
|
static QString rootPath();
|
|
};
|
|
}
|
|
|
|
void initMuseScoreResources();
|
|
|
|
#endif
|