コード例 #1
0
        public static int Main(string[] args)
        {
            Directory.CreateDirectory(USER_DR_DIR);

            Context context = Context.Load(Path.Combine(USER_DR_DIR, "profile.xml"), "Project.xml");

            using WebClient webClient = new WebClient
            {
                BaseAddress = BASE_URL
            };
            RemoteRepository remoteRepository = new RemoteRepository(new InvoiceManager(context), context, new WebClientUtility(webClient), new FileUtility());

            InstallationManager installationManager = new InstallationManager(remoteRepository, new FileUtility(), Path.Combine(USER_DR_DIR, "installed"), context);
            DocumentationManager documentationManager = new DocumentationManager(remoteRepository, new FileUtility(), Path.Combine(USER_DR_DIR, "documetation"));

            Templater templater = new Templater(TEMPLATES_PATH);

            Program program = new Program(installationManager, documentationManager, templater, context);

            return new Parser(SetupParser).ParseArguments<NewOptions, RunOptions, GetOptions, PullOptions, DocsOptions>(args)
                .MapResult(
                    (NewOptions opts) => program.New(opts),
                    (RunOptions opts) => program.Run(opts),
                    (GetOptions opts) => program.Get(opts),
                    (PullOptions opts) => program.Pull(opts),
                    (DocsOptions opts) => program.Docs(opts),
                    _ => 1);
        }
コード例 #2
0
 public Program(InstallationManager installationManager, DocumentationManager documentationManager, Templater templater, Context context)
 {
     this.documentationManager = documentationManager;
     this.templater = templater;
     this.context = context;
     this.installationManager = installationManager;
 }
コード例 #3
0
        public void TestGetVersionsWhenNonePresent()
        {
            // GIVEN the search directory does not exist
            mockIFileUtility.Setup(f => f.DirectoryExists("a-dir")).Returns(false);

            // WHEN I get the installed versions
            DocumentationManager             classUnderTest = new DocumentationManager(null, mockIFileUtility.Object, "a-dir");
            List <DocumentationInstallation> result         = classUnderTest.GetVersions();

            // THEN the result is an empty array
            Assert.AreEqual(0, result.Count);
        }
コード例 #4
0
        public void TestGetInstallationWhenNotExists()
        {
            // GIVEN the installation is not present
            mockIFileUtility.Setup(f => f.DirectoryExists(Path.Combine("a-dir", "a-version"))).Returns(false);

            // WHEN I get the installation
            DocumentationManager      classUnderTest = new DocumentationManager(null, mockIFileUtility.Object, "a-dir");
            DocumentationInstallation result         = classUnderTest.GetInstallation("a-version");

            // THEN the result is null
            Assert.IsNull(result);
        }
コード例 #5
0
        public void TestGetInstallationWhenExists()
        {
            // GIVEN the installation is present
            mockIFileUtility.Setup(f => f.DirectoryExists(Path.Combine("a-dir", "a-version"))).Returns(true);

            // WHEN I get the installation
            DocumentationManager      classUnderTest = new DocumentationManager(null, mockIFileUtility.Object, "a-dir");
            DocumentationInstallation result         = classUnderTest.GetInstallation("a-version");

            // THEN the result is a valid DocumentationManager object
            Assert.AreEqual("a-version", result.Version);
            Assert.AreEqual(Path.Combine("a-dir", "a-version"), result.InstallationPath);
        }
コード例 #6
0
        public void TestInstallWhenDownloadFails()
        {
            // GIVEN the installation does not exist
            mockIFileUtility.Setup(f => f.DirectoryExists(Path.Combine("a-dir", "a-version"))).Returns(false);

            // AND the installation is not available on the remote
            mockIRemoteRepository.Setup(r => r.DownloadDocumentationTo("a-version", Path.Combine("a-dir", "a-version")))
            .Returns(false);

            // WHEN I install the version
            DocumentationManager      classUnderTest = new DocumentationManager(mockIRemoteRepository.Object, mockIFileUtility.Object, "a-dir");
            DocumentationInstallation result         = classUnderTest.Install("a-version", false);

            // THEN null is returned
            Assert.IsNull(result);
        }
コード例 #7
0
        public void TestGetVersions()
        {
            // GIVEN at least version is available
            mockIFileUtility.Setup(f => f.DirectoryExists("a-dir")).Returns(true);
            mockIFileUtility.Setup(f => f.GetDirectories("a-dir")).Returns(new string[] { "dir1", "dir2" });

            // WHEN I get the installed versions
            DocumentationManager             classUnderTest = new DocumentationManager(null, mockIFileUtility.Object, "a-dir");
            List <DocumentationInstallation> result         = classUnderTest.GetVersions();

            // THEN the result is the correct DocumentationManager objects
            Assert.AreEqual(2, result.Count);

            Assert.AreEqual("dir1", result[0].Version);
            Assert.AreEqual(Path.Combine("a-dir", "dir1"), result[0].InstallationPath);

            Assert.AreEqual("dir2", result[1].Version);
            Assert.AreEqual(Path.Combine("a-dir", "dir2"), result[1].InstallationPath);
        }
コード例 #8
0
        public void TestInstall()
        {
            // GIVEN the installation does not exist
            mockIFileUtility.Setup(f => f.DirectoryExists(Path.Combine("a-dir", "a-version"))).Returns(false);

            // AND the installation is available on the remote
            mockIRemoteRepository.Setup(r => r.DownloadDocumentationTo("a-version", Path.Combine("a-dir", "a-version")))
            .Returns(true);

            // WHEN I install the version
            DocumentationManager      classUnderTest = new DocumentationManager(mockIRemoteRepository.Object, mockIFileUtility.Object, "a-dir");
            DocumentationInstallation result         = classUnderTest.Install("a-version", false);

            // THEN the download was run
            mockIRemoteRepository.Verify(r => r.DownloadDocumentationTo("a-version", Path.Combine("a-dir", "a-version")));

            // AND the installation returned is correct
            Assert.AreEqual("a-version", result.Version);
            Assert.AreEqual(Path.Combine("a-dir", "a-version"), result.InstallationPath);
        }