File: MigrationWriterTests.cs

package info (click to toggle)
mono-reference-assemblies 3.12.1%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 604,240 kB
  • ctags: 625,505
  • sloc: cs: 3,967,741; xml: 2,793,081; ansic: 418,042; java: 60,435; sh: 14,833; makefile: 11,576; sql: 7,956; perl: 1,467; cpp: 1,446; yacc: 1,203; python: 598; asm: 422; sed: 16; php: 1
file content (184 lines) | stat: -rw-r--r-- 7,868 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.

namespace System.Data.Entity.Migrations.Utilities
{
    using System.Collections;
    using System.Data.Entity.Migrations.Design;
    using System.IO;
    using System.Linq;
    using System.Resources;
    using EnvDTE;
    using Moq;
    using Xunit;

    public class MigrationWriterTests : IDisposable
    {
        private const string MigrationName = "InitialCreate";
        private const string MigrationId = "201206072128312_" + MigrationName;
        private const string Language = "cs";
        private const string MigrationsDirectory = "Migrations";
        private const string UserCodeFileName = MigrationId + "." + Language;
        private const string DesignerCodeFileName = MigrationId + ".Designer." + Language;
        private const string ResourcesFileName = MigrationId + ".resx";
        private const string UserCodePath = MigrationsDirectory + @"\" + UserCodeFileName;
        private const string DesignerCodePath = MigrationsDirectory + @"\" + DesignerCodeFileName;
        private const string ResourcesPath = MigrationsDirectory + @"\" + ResourcesFileName;
        private const string ResourceName = "MyResource";

        private readonly string _projectDir = IOHelpers.GetTempDirName();

        [Fact]
        public void Write_writes_artifacts()
        {
            TestWrite(
                (writer, scaffoldedMigration) =>
                writer.Write(scaffoldedMigration));
        }

        [Fact]
        public void Write_overwrites_designerCode_and_resources_when_rescaffolding()
        {
            CreateProject(
                "The user code.",
                "The old designer code.",
                "The old resource.");

            TestWrite(
                (writer, scaffoldedMigration) =>
                writer.Write(scaffoldedMigration, rescaffolding: true));
        }

        [Fact]
        public void Write_doesnt_overwrite_userCode_when_rescaffolding()
        {
            CreateProject(
                "The edited user code.",
                "The old designer code.",
                "The old resource.");

            TestWrite(
                (writer, scaffoldedMigration) =>
                writer.Write(scaffoldedMigration, rescaffolding: true, name: MigrationName),
                skipUserCodeVerification: true);

            var userCodePath = Path.Combine(_projectDir, UserCodePath);
            Assert.Equal("The edited user code.", File.ReadAllText(userCodePath));
        }

        [Fact]
        public void Write_overwrites_artifacts_when_rescaffolding_with_force()
        {
            CreateProject(
                "The edited user code.",
                "The old designer code.",
                "The old resource.");

            TestWrite(
                (writer, scaffoldedMigration) =>
                writer.Write(scaffoldedMigration, rescaffolding: true, force: true));
        }

        public void Dispose()
        {
            Directory.Delete(_projectDir, recursive: true);
        }

        private void CreateProject(string userCode, string designerCode, string resource)
        {
            Directory.CreateDirectory(Path.Combine(_projectDir, MigrationsDirectory));

            var userCodePath = Path.Combine(_projectDir, UserCodePath);
            File.WriteAllText(userCodePath, userCode);

            var designerCodePath = Path.Combine(_projectDir, DesignerCodePath);
            File.WriteAllText(designerCodePath, designerCode);

            var resourcesPath = Path.Combine(_projectDir, ResourcesPath);

            using (var resourceWriter = new ResXResourceWriter(resourcesPath))
            {
                resourceWriter.AddResource(ResourceName, resource);
            }
        }

        private void TestWrite(
            Func<System.Data.Entity.Migrations.Utilities.MigrationWriter, ScaffoldedMigration, string> action,
            bool skipUserCodeVerification = false)
        {
            var command = CreateCommand(_projectDir);
            var writer = new System.Data.Entity.Migrations.Utilities.MigrationWriter(command);
            var scaffoldedMigration = new ScaffoldedMigration
                                          {
                                              MigrationId = MigrationId,
                                              Language = Language,
                                              Directory = MigrationsDirectory,
                                              UserCode = "The user code.",
                                              DesignerCode = "The designer code.",
                                              Resources =
                                                  {
                                                      { ResourceName, "The resource." }
                                                  }
                                          };

            var relativeUserCodePath = action(writer, scaffoldedMigration);

            Assert.Equal(UserCodePath, relativeUserCodePath);

            if (!skipUserCodeVerification)
            {
                var userCodePath = Path.Combine(_projectDir, UserCodePath);
                Assert.Equal("The user code.", File.ReadAllText(userCodePath));
            }

            var designerCodePath = Path.Combine(_projectDir, DesignerCodePath);
            Assert.Equal("The designer code.", File.ReadAllText(designerCodePath));

            var resourcesPath = Path.Combine(_projectDir, ResourcesPath);

            using (var reader = new ResXResourceReader(resourcesPath))
            {
                var resources = reader.Cast<DictionaryEntry>();

                Assert.Equal(1, resources.Count());
                Assert.Contains(new DictionaryEntry(ResourceName, "The resource."), resources);
            }
        }

        private static System.Data.Entity.Migrations.MigrationsDomainCommand CreateCommand(string projectDir)
        {
            var fullPathProperty = new Mock<Property>();
            fullPathProperty.SetupGet(p => p.Value).Returns(projectDir);

            var properties = new Mock<Properties>();
            properties.Setup(p => p.Item("FullPath")).Returns(fullPathProperty.Object);

            var dte = new Mock<DTE>();

            var projectItems = new Mock<ProjectItems>();
            projectItems.SetupGet(pi => pi.Kind).Returns(
                System.Data.Entity.Migrations.Extensions.ProjectExtensions.VsProjectItemKindPhysicalFolder);
            projectItems.Setup(pi => pi.AddFromDirectory(It.IsAny<string>())).Returns(
                () =>
                    {
                        var dirProjectItems = new Mock<ProjectItems>();

                        var dirProjectItem = new Mock<ProjectItem>();
                        dirProjectItem.SetupGet(pi => pi.ProjectItems).Returns(dirProjectItems.Object);

                        return dirProjectItem.Object;
                    });

            var project = new Mock<Project>();
            projectItems.SetupGet(pi => pi.Parent).Returns(() => project.Object);
            project.SetupGet(p => p.Properties).Returns(properties.Object);
            project.SetupGet(p => p.DTE).Returns(dte.Object);
            project.SetupGet(p => p.ProjectItems).Returns(projectItems.Object);

            var command = new Mock<System.Data.Entity.Migrations.MigrationsDomainCommand>();
            command.SetupGet(c => c.Project).Returns(project.Object);
            command.Setup(c => c.WriteWarning(It.IsAny<string>())).Callback(() => { });

            return command.Object;
        }
    }
}