Exemplo n.º 1
0
        public void ParserShouldCallStatementFactoryAndContextManagerWhenParsingTokens()
        {
            IList <TokenBase> input = new List <TokenBase>();

            input.Add(TokenCreator.Create <GenericToken>("source", null));
            input.Add(TokenCreator.Create <GenericToken>("code", null));

            IStatementFactory        factory        = Mocker.StrictMock <IStatementFactory>();
            IStatementContext        context        = Mocker.StrictMock <IStatementContext>();
            IStatementContextManager contextManager = Mocker.StrictMock <IStatementContextManager>();

            Expect.Call(factory.CanCreateStatementFrom(new List <TokenBase>(), context)).IgnoreArguments().Return(true).Repeat.Once();
            Expect.Call(factory.Create(input, context)).Return(new GenericStatement(input, context)).Repeat.Once();
            Expect.Call(() => contextManager.Encountered(new[] { new GenericStatement(input, context) }, input.Count, input)).Repeat.Once();
            Expect.Call(contextManager.GetContext(input)).Return(context).Repeat.Once();

            input.Add(TokenCreator.Create <SemiColonToken>());

            StubStatementFactoryProvider provider = new StubStatementFactoryProvider(factory);
            CalidusStatementParser       parser   = new CalidusStatementParser(provider, contextManager);

            Mocker.ReplayAll();

            parser.Parse(input);

            Mocker.VerifyAll();
        }
Exemplo n.º 2
0
        public override void SetUp()
        {
            base.SetUp();

            IStatementContextManager contextManager = Mocker.DynamicMock <IStatementContextManager>();

            _parser = new CalidusStatementParser(new StubStatementFactoryProvider(), contextManager);
            Mocker.ReplayAll();
        }
Exemplo n.º 3
0
        /// <summary>
        /// Starts the runner
        /// </summary>
        /// <param name="configFactory">The configuration factory</param>
        /// <param name="project">The project to run against</param>
        public void Run(ICalidusRuleConfigurationFactory configFactory, ICalidusProject project)
        {
            //raise started
            if (Started != null)
            {
                Started(this, new EventArgs());
            }

            IList <RuleViolation> violations = new List <RuleViolation>();

            CalidusTokenParser     parser          = new CalidusTokenParser();
            CalidusStatementParser statementParser = new CalidusStatementParser();
            CalidusBlockParser     blockParser     = new CalidusBlockParser();
            CalidusLineParser      lineParser      = new CalidusLineParser();

            CalidusRuleProvider ruleProvider = new CalidusRuleProvider();

            IEnumerable <String> filesToCheck = project.GetSourceFilesToValidate();

            int currentFile = 0;
            int totalFiles  = filesToCheck.Count();

            foreach (String aFile in filesToCheck)
            {
                currentFile++;
                IEnumerable <TokenBase>     parsedTokens     = parser.Parse(File.ReadAllText(aFile));
                IEnumerable <StatementBase> parsedStatements = statementParser.Parse(parsedTokens);
                IEnumerable <BlockBase>     parsedBlocks     = blockParser.Parse(parsedStatements);
                IEnumerable <LineBase>      parsedLines      = lineParser.Parse(parsedTokens);

                IList <RuleViolation> currentFileViolations = new List <RuleViolation>();

                foreach (StatementRuleBase aStatementRule in ruleProvider.GetStatementRules(configFactory))
                {
                    foreach (StatementBase aStatement in parsedStatements)
                    {
                        if (aStatementRule.Validates(aStatement))
                        {
                            if (aStatementRule.IsValidFor(aStatement) == false)
                            {
                                currentFileViolations.Add(new RuleViolation(aFile, aStatementRule, aStatement));
                            }
                        }
                    }
                }

                foreach (BlockRuleBase aBlockRule in ruleProvider.GetBlockRules(configFactory))
                {
                    foreach (BlockBase aBlock in parsedBlocks)
                    {
                        if (aBlockRule.Validates(aBlock))
                        {
                            if (aBlockRule.IsValidFor(aBlock) == false)
                            {
                                currentFileViolations.Add(new RuleViolation(aFile, aBlockRule, aBlock.Statements.ElementAt(0)));
                            }
                        }
                    }
                }

                foreach (LineRuleBase aLineRule in ruleProvider.GetLineRules(configFactory))
                {
                    foreach (LineBase aLine in parsedLines)
                    {
                        if (aLineRule.Validates(aLine))
                        {
                            if (aLineRule.IsValidFor(aLine) == false)
                            {
                                currentFileViolations.Add(new RuleViolation(aFile, aLineRule, aLine.Tokens));
                            }
                        }
                    }
                }

                //raise file completed
                FileCompletedEventArgs args = new FileCompletedEventArgs(aFile, currentFile, totalFiles, currentFileViolations);
                if (FileCompleted != null)
                {
                    FileCompleted(this, args);
                }

                //add violations to whole list
                foreach (RuleViolation aViolation in currentFileViolations)
                {
                    violations.Add(aViolation);
                }
            }
            //raise completed
            if (Completed != null)
            {
                Completed(this, new RuleRunnerEventArgs(violations));
            }
        }
Exemplo n.º 4
0
        private void cmdParse_Click(object sender, EventArgs e)
        {
            CalidusTokenParser     tokenParser     = new CalidusTokenParser();
            CalidusStatementParser statementParser = new CalidusStatementParser();
            CalidusBlockParser     blockParser     = new CalidusBlockParser();
            CalidusLineParser      lineParser      = new CalidusLineParser();

            int genericToken     = 0;
            int genericStatement = 0;

            IEnumerable <TokenBase> parsedTokens = null;

            try
            {
                parsedTokens = tokenParser.Parse(rtSource.Text);
                _currentTokens.Clear();
                foreach (TokenBase aToken in parsedTokens)
                {
                    if (aToken is GenericToken)
                    {
                        genericToken++;
                    }
                    _currentTokens.Add(new VisualiserToken(aToken));
                }
            }
            catch (CalidusException ex)
            {
                MessageBox.Show("Errors occured during token parsing: " + ex.Message);

                lstTokenList.Enabled       = false;
                lstTokenDetails.DataSource = null;
                lstTokenList.DataSource    = null;
            }

            IEnumerable <StatementBase> parsedStatements = null;

            try
            {
                if (parsedTokens != null)
                {
                    parsedStatements = statementParser.Parse(parsedTokens);
                    _currentStatements.Clear();
                    foreach (StatementBase aStatement in parsedStatements)
                    {
                        if (aStatement is GenericStatement)
                        {
                            genericStatement++;
                        }
                        _currentStatements.Add(new VisualiserStatement(aStatement));
                    }
                }
            }
            catch (CalidusException ex)
            {
                MessageBox.Show("Errors occured during statement parsing: " + ex.Message);

                lstTokenList.Enabled       = false;
                lstTokenDetails.DataSource = null;
                lstTokenList.DataSource    = null;


                lstStatementList.Enabled       = false;
                lstStatementDetails.DataSource = null;
                lstStatementList.DataSource    = null;
            }

            try
            {
                if (parsedStatements != null)
                {
                    IEnumerable <BlockBase> parsedBlocks = blockParser.Parse(parsedStatements);
                    _currentBlocks.Clear();
                    foreach (BlockBase aBlock in parsedBlocks)
                    {
                        _currentBlocks.Add(new VisualiserBlock(aBlock));
                    }
                }
            }
            catch (CalidusException ex)
            {
                MessageBox.Show("Errors occured during block parsing: " + ex.Message);

                lstTokenList.Enabled       = false;
                lstTokenDetails.DataSource = null;
                lstTokenList.DataSource    = null;
            }

            try
            {
                if (parsedTokens != null)
                {
                    IEnumerable <LineBase> parsedLines = lineParser.Parse(parsedTokens);
                    _currentLines.Clear();
                    foreach (LineBase aLine in parsedLines)
                    {
                        _currentLines.Add(new VisualiserLine(aLine));
                    }
                }
            }
            catch (CalidusException ex)
            {
                MessageBox.Show("Errors occured during line parsing: " + ex.Message);

                lstLineList.Enabled       = false;
                lstLineDetails.DataSource = null;
                lstLineList.DataSource    = null;
            }

            lstTokenList.DataSource     = _currentTokens;
            lstTokenList.Enabled        = true;
            lstStatementList.DataSource = _currentStatements;
            lstStatementList.Enabled    = true;
            lstBlockList.DataSource     = _currentBlocks;
            lstBlockList.Enabled        = true;
            lstLineList.DataSource      = _currentLines;
            lstLineList.Enabled         = true;

            lblGenericToken.Text     = String.Format(_genericTokenCount, genericToken);
            lblGenericStatement.Text = String.Format(_genericStatementCount, genericStatement);

            tabDisplay.SelectedIndex = 0;
            DisplayCurrentToken();
        }