Esempio n. 1
0
        public virtual void setUp()
        {
            recursiveDelete(testName() + " (SetUp)", trash, false, true);

            mockSystemReader = new MockSystemReader();
            mockSystemReader.userGitConfig = new FileBasedConfig(new FileInfo(Path.Combine(trash.FullName, "usergitconfig")));
            SystemReader.setInstance(mockSystemReader);

            long now = mockSystemReader.getCurrentTime();
            int  tz  = mockSystemReader.getTimezone(now);

            author = new PersonIdent("J. Author", "*****@*****.**");
            author = new PersonIdent(author, now, tz);

            committer = new PersonIdent("J. Committer", "*****@*****.**");
            committer = new PersonIdent(committer, now, tz);

            WindowCacheConfig c = new WindowCacheConfig();

            c.PackedGitLimit      = (128 * WindowCacheConfig.Kb);
            c.PackedGitWindowSize = (8 * WindowCacheConfig.Kb);
            c.PackedGitMMAP       = (useMMAP);
            c.DeltaBaseCacheLimit = (8 * WindowCacheConfig.Kb);
            WindowCache.reconfigure(c);
        }
		protected override void ConfigureVersionControlSystem()
		{
			var mockSystemReader = new MockSystemReader(SystemReader.GetInstance());
			SystemReader.SetInstance(mockSystemReader);

			For<IVersionControlSystem>().Use<GitVersionControlSystem>();
		}
 public virtual void SetUp()
 {
     mockSystemReader = new _MockSystemReader_62();
     SystemReader.SetInstance(mockSystemReader);
     ident = RawParseUtils.ParsePersonIdent("A U Thor <*****@*****.**> 1316560165 -0400"
                                            );
 }
        protected override void ConfigureVersionControlSystem()
        {
            var mockSystemReader = new MockSystemReader(SystemReader.GetInstance());

            SystemReader.SetInstance(mockSystemReader);

            For <IVersionControlSystem>().Use <GitVersionControlSystem>();
        }
Esempio n. 5
0
        public virtual void Test007_readUserConfig()
        {
            MockSystemReader mockSystemReader = new MockSystemReader();

            SystemReader.SetInstance(mockSystemReader);
            string hostname      = mockSystemReader.GetHostname();
            Config userGitConfig = mockSystemReader.OpenUserConfig(null, FS.DETECTED);
            Config localConfig   = new Config(userGitConfig);

            mockSystemReader.ClearProperties();
            string authorName;
            string authorEmail;

            // no values defined nowhere
            authorName  = localConfig.Get(UserConfig.KEY).GetAuthorName();
            authorEmail = localConfig.Get(UserConfig.KEY).GetAuthorEmail();
            NUnit.Framework.Assert.AreEqual(Constants.UNKNOWN_USER_DEFAULT, authorName);
            NUnit.Framework.Assert.AreEqual(Constants.UNKNOWN_USER_DEFAULT + "@" + hostname,
                                            authorEmail);
            // the system user name is defined
            mockSystemReader.SetProperty(Constants.OS_USER_NAME_KEY, "os user name");
            localConfig.Uncache(UserConfig.KEY);
            authorName = localConfig.Get(UserConfig.KEY).GetAuthorName();
            NUnit.Framework.Assert.AreEqual("os user name", authorName);
            if (hostname != null && hostname.Length != 0)
            {
                authorEmail = localConfig.Get(UserConfig.KEY).GetAuthorEmail();
                NUnit.Framework.Assert.AreEqual("os user name@" + hostname, authorEmail);
            }
            // the git environment variables are defined
            mockSystemReader.SetProperty(Constants.GIT_AUTHOR_NAME_KEY, "git author name");
            mockSystemReader.SetProperty(Constants.GIT_AUTHOR_EMAIL_KEY, "author@email");
            localConfig.Uncache(UserConfig.KEY);
            authorName  = localConfig.Get(UserConfig.KEY).GetAuthorName();
            authorEmail = localConfig.Get(UserConfig.KEY).GetAuthorEmail();
            NUnit.Framework.Assert.AreEqual("git author name", authorName);
            NUnit.Framework.Assert.AreEqual("author@email", authorEmail);
            // the values are defined in the global configuration
            userGitConfig.SetString("user", null, "name", "global username");
            userGitConfig.SetString("user", null, "email", "author@globalemail");
            authorName  = localConfig.Get(UserConfig.KEY).GetAuthorName();
            authorEmail = localConfig.Get(UserConfig.KEY).GetAuthorEmail();
            NUnit.Framework.Assert.AreEqual("global username", authorName);
            NUnit.Framework.Assert.AreEqual("author@globalemail", authorEmail);
            // the values are defined in the local configuration
            localConfig.SetString("user", null, "name", "local username");
            localConfig.SetString("user", null, "email", "author@localemail");
            authorName  = localConfig.Get(UserConfig.KEY).GetAuthorName();
            authorEmail = localConfig.Get(UserConfig.KEY).GetAuthorEmail();
            NUnit.Framework.Assert.AreEqual("local username", authorName);
            NUnit.Framework.Assert.AreEqual("author@localemail", authorEmail);
            authorName  = localConfig.Get(UserConfig.KEY).GetCommitterName();
            authorEmail = localConfig.Get(UserConfig.KEY).GetCommitterEmail();
            NUnit.Framework.Assert.AreEqual("local username", authorName);
            NUnit.Framework.Assert.AreEqual("author@localemail", authorEmail);
        }
        public virtual void setUp(){
            recursiveDelete(testName() + " (SetUp)", trash, false, true);

            mockSystemReader = new MockSystemReader();
            mockSystemReader.userGitConfig = new FileBasedConfig(new FileInfo(Path.Combine(trash.FullName, "usergitconfig")));
            SystemReader.setInstance(mockSystemReader);

            long now = mockSystemReader.getCurrentTime();
            int tz = mockSystemReader.getTimezone(now);
            author = new PersonIdent("J. Author", "*****@*****.**");
            author = new PersonIdent(author, now, tz);

            committer = new PersonIdent("J. Committer", "*****@*****.**");
            committer = new PersonIdent(committer, now, tz);

            WindowCacheConfig c = new WindowCacheConfig();
            c.PackedGitLimit = (128 * WindowCacheConfig.Kb);
            c.PackedGitWindowSize = (8 * WindowCacheConfig.Kb);
            c.PackedGitMMAP = (useMMAP);
            c.DeltaBaseCacheLimit = (8 * WindowCacheConfig.Kb);
            WindowCache.reconfigure(c);
        }
Esempio n. 7
0
        public void test007_readUserConfig()
        {
            MockSystemReader mockSystemReader = new MockSystemReader();
            SystemReader.setInstance(mockSystemReader);
            string hostname = mockSystemReader.getHostname();
            Core.Config userGitConfig = mockSystemReader.openUserConfig();
            Core.Config localConfig = new Core.Config(userGitConfig);
            mockSystemReader.clearProperties();

            string authorName;
            string authorEmail;

            // no values defined nowhere
            authorName = localConfig.get(UserConfig.KEY).getAuthorName();
            authorEmail = localConfig.get(UserConfig.KEY).getAuthorEmail();
            Assert.AreEqual(Constants.UNKNOWN_USER_DEFAULT, authorName);
            Assert.AreEqual(Constants.UNKNOWN_USER_DEFAULT + "@" + hostname, authorEmail);

            // the system user name is defined
            mockSystemReader.setProperty(Constants.OS_USER_NAME_KEY, "os user name");
            localConfig.uncache(UserConfig.KEY);
            authorName = localConfig.get(UserConfig.KEY).getAuthorName();
            Assert.AreEqual("os user name", authorName);

            if (hostname != null && hostname.Length != 0)
            {
                authorEmail = localConfig.get(UserConfig.KEY).getAuthorEmail();
                Assert.AreEqual("os user name@" + hostname, authorEmail);
            }

            // the git environment variables are defined
            mockSystemReader.setProperty(Constants.GIT_AUTHOR_NAME_KEY, "git author name");
            mockSystemReader.setProperty(Constants.GIT_AUTHOR_EMAIL_KEY, "author@email");
            localConfig.uncache(UserConfig.KEY);
            authorName = localConfig.get(UserConfig.KEY).getAuthorName();
            authorEmail = localConfig.get(UserConfig.KEY).getAuthorEmail();
            Assert.AreEqual("git author name", authorName);
            Assert.AreEqual("author@email", authorEmail);

            // the values are defined in the global configuration
            userGitConfig.setString("user", null, "name", "global username");
            userGitConfig.setString("user", null, "email", "author@globalemail");
            authorName = localConfig.get(UserConfig.KEY).getAuthorName();
            authorEmail = localConfig.get(UserConfig.KEY).getAuthorEmail();
            Assert.AreEqual("global username", authorName);
            Assert.AreEqual("author@globalemail", authorEmail);

            // the values are defined in the local configuration
            localConfig.setString("user", null, "name", "local username");
            localConfig.setString("user", null, "email", "author@localemail");
            authorName = localConfig.get(UserConfig.KEY).getAuthorName();
            authorEmail = localConfig.get(UserConfig.KEY).getAuthorEmail();
            Assert.AreEqual("local username", authorName);
            Assert.AreEqual("author@localemail", authorEmail);

            authorName = localConfig.get(UserConfig.KEY).getCommitterName();
            authorEmail = localConfig.get(UserConfig.KEY).getCommitterEmail();
            Assert.AreEqual("local username", authorName);
            Assert.AreEqual("author@localemail", authorEmail);
        }
Esempio n. 8
0
        public virtual void SetUp()
        {
            MockSystemReader mockSystemReader = new MockSystemReader();

            SystemReader.SetInstance(mockSystemReader);
        }