1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-06 19:47:19 +08:00
osu-lazer/osu.Desktop.VisualTests/Tests/TestCaseBeatmapDetails.cs

62 lines
2.3 KiB
C#
Raw Normal View History

2017-03-25 23:33:03 +01: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 15:51:54 +02:00
using osu.Framework.Testing;
2017-03-24 23:02:24 +01:00
using osu.Game.Database;
using osu.Game.Screens.Select;
2017-03-24 23:02:24 +01:00
using System.Linq;
namespace osu.Desktop.VisualTests.Tests
{
internal class TestCaseBeatmapDetails : TestCase
2017-03-24 23:02:24 +01:00
{
public override string Description => "BeatmapDetails tab of BeatmapDetailArea";
2017-07-08 18:17:47 +09:00
private readonly BeatmapDetails details;
2017-03-24 23:02:24 +01:00
public TestCaseBeatmapDetails()
2017-03-24 23:02:24 +01:00
{
Add(details = new BeatmapDetails
2017-03-24 23:02:24 +01:00
{
RelativeSizeAxes = Axes.Both,
2017-03-28 20:18:56 +02:00
Padding = new MarginPadding(150),
2017-03-25 23:33:03 +01:00
Beatmap = new BeatmapInfo
2017-03-24 23:02:24 +01:00
{
2017-03-25 23:33:03 +01: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-04-12 21:09:39 +09:00
Metrics = new BeatmapMetrics
2017-04-10 16:42:23 +02:00
{
2017-06-08 14:35:10 +08:00
Ratings = Enumerable.Range(0, 10),
2017-04-11 18:43:48 +02:00
Fails = Enumerable.Range(lastRange, 100).Select(i => i % 12 - 6),
Retries = Enumerable.Range(lastRange - 3, 100).Select(i => i % 12 - 6),
2017-04-10 16:42:23 +02:00
},
2017-03-24 23:02:24 +01:00
},
});
2017-03-28 20:18:56 +02:00
2017-04-10 16:42:23 +02:00
AddRepeatStep("fail values", newRetryAndFailValues, 10);
}
private int lastRange = 1;
private void newRetryAndFailValues()
{
2017-04-12 21:09:39 +09:00
details.Beatmap.Metrics.Fails = Enumerable.Range(lastRange, 100).Select(i => i % 12 - 6);
details.Beatmap.Metrics.Retries = Enumerable.Range(lastRange - 3, 100).Select(i => i % 12 - 6);
2017-04-11 18:43:48 +02:00
details.Beatmap = details.Beatmap;
2017-03-29 15:37:51 +02:00
lastRange += 100;
2017-03-24 23:02:24 +01:00
}
}
2017-04-04 17:27:08 +02:00
}