1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 04:07:26 +08:00
osu-lazer/osu.Desktop.VisualTests/Tests/TestCaseBeatmapDetails.cs

62 lines
2.2 KiB
C#
Raw Normal View History

2017-03-26 06:33:03 +08:00
// Copyright (c) 2007-2017 ppy Pty Ltd <contact@ppy.sh>.
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using osu.Framework.Graphics;
2017-03-29 02:18:56 +08:00
using osu.Framework.Graphics.Primitives;
2017-03-29 21:51:54 +08:00
using osu.Framework.Testing;
2017-03-25 06:02:24 +08:00
using osu.Game.Database;
using osu.Game.Screens.Select;
2017-03-25 06:02:24 +08:00
using System;
using System.Linq;
namespace osu.Desktop.VisualTests.Tests
{
internal class TestCaseBeatmapDetails : TestCase
2017-03-25 06:02:24 +08:00
{
public override string Description => "BeatmapDetails tab of BeatmapDetailArea";
private BeatmapDetails details;
2017-03-25 06:02:24 +08:00
public override void Reset()
{
base.Reset();
Add(details = new BeatmapDetails
2017-03-25 06:02:24 +08:00
{
RelativeSizeAxes = Axes.Both,
2017-03-29 02:18:56 +08:00
Padding = new MarginPadding(150),
2017-03-26 06:33:03 +08:00
Beatmap = new BeatmapInfo
2017-03-25 06:02:24 +08:00
{
2017-03-26 06:33:03 +08:00
Version = "VisualTest",
Metadata = new BeatmapMetadata
{
Source = "Some guy",
Tags = "beatmap metadata example with a very very long list of tags and not much creativity",
},
Difficulty = new BeatmapDifficulty
{
CircleSize = 7,
ApproachRate = 3.5f,
OverallDifficulty = 5.7f,
DrainRate = 1,
},
StarDifficulty = 5.3f,
2017-03-25 06:02:24 +08:00
},
});
2017-03-29 02:18:56 +08:00
2017-04-04 23:17:37 +08:00
AddRepeatStep("new retry/fail values", newRetryAndFailValues, 10);
2017-04-08 02:32:09 +08:00
AddStep("new ratings", () => details.Ratings = Enumerable.Range(1, 10));
AddStep("remove retries and fails", () => details.Retries = null );
AddStep("remove ratings", () => details.Ratings = null);
}
private int lastRange = 1;
private void newRetryAndFailValues()
{
details.Fails = Enumerable.Range(lastRange, 100).Select(i => (int)(Math.Cos(i) * 100));
details.Retries = Enumerable.Range(lastRange, 100).Select(i => (int)(Math.Sin(i) * 100));
2017-03-29 21:37:51 +08:00
lastRange += 100;
2017-03-25 06:02:24 +08:00
}
}
2017-04-04 23:27:08 +08:00
}