How to use TestSpecWithDataTable method of parser Package

Best Gauge code snippet using parser.TestSpecWithDataTable

specparser_test.go

Source:specparser_test.go Github

copy

Full Screen

...259 c.Assert(result.Ok, Equals, false)260 c.Assert(result.ParseErrors[0].Message, Equals, "Step text should not have '{static}' or '{dynamic}' or '{special}'")261 c.Assert(result.ParseErrors[0].LineNo, Equals, 3)262}263func (s *MySuite) TestSpecWithDataTable(c *C) {264 tokens := []*Token{265 &Token{Kind: gauge.SpecKind, Value: "Spec Heading"},266 &Token{Kind: gauge.CommentKind, Value: "Comment before data table"},267 &Token{Kind: gauge.TableHeader, Args: []string{"id", "name"}},268 &Token{Kind: gauge.TableRow, Args: []string{"1", "foo"}},269 &Token{Kind: gauge.TableRow, Args: []string{"2", "bar"}},270 &Token{Kind: gauge.CommentKind, Value: "Comment before data table"},271 &Token{Kind: gauge.ScenarioKind, Value: "Scenario heading"},272 &Token{Kind: gauge.StepKind, Value: "my step"},273 }274 spec, result, err := new(SpecParser).CreateSpecification(tokens, gauge.NewConceptDictionary(), "")275 c.Assert(err, IsNil)276 c.Assert(len(spec.Items), Equals, 4)277 c.Assert(spec.Items[0], Equals, spec.Comments[0])278 c.Assert(spec.Items[1], DeepEquals, &spec.DataTable)279 c.Assert(spec.Items[2], Equals, spec.Comments[1])280 c.Assert(result.Ok, Equals, true)281 c.Assert(spec.DataTable, NotNil)282 idCells, _ := spec.DataTable.Table.Get("id")283 nameCells, _ := spec.DataTable.Table.Get("name")284 c.Assert(len(idCells), Equals, 2)285 c.Assert(len(nameCells), Equals, 2)286 c.Assert(idCells[0].Value, Equals, "1")287 c.Assert(idCells[0].CellType, Equals, gauge.Static)288 c.Assert(idCells[1].Value, Equals, "2")289 c.Assert(idCells[1].CellType, Equals, gauge.Static)290 c.Assert(nameCells[0].Value, Equals, "foo")291 c.Assert(nameCells[0].CellType, Equals, gauge.Static)292 c.Assert(nameCells[1].Value, Equals, "bar")293 c.Assert(nameCells[1].CellType, Equals, gauge.Static)294}295func TestScenarioWithDataTable(t *testing.T) {296 var subject = func() *gauge.Scenario {297 tokens := []*Token{298 &Token{Kind: gauge.SpecKind, Value: "Spec Heading"},299 &Token{Kind: gauge.CommentKind, Value: "Comment before data table"},300 &Token{Kind: gauge.ScenarioKind, Value: "Scenario heading"},301 &Token{Kind: gauge.CommentKind, Value: "Comment before data table"},302 &Token{Kind: gauge.TableHeader, Args: []string{"id", "name"}},303 &Token{Kind: gauge.TableRow, Args: []string{"1", "foo"}},304 &Token{Kind: gauge.TableRow, Args: []string{"2", "bar"}},305 &Token{Kind: gauge.StepKind, Value: "my step"},306 }307 spec, result, err := new(SpecParser).CreateSpecification(tokens, gauge.NewConceptDictionary(), "")308 if err != nil {309 t.Error(err)310 }311 v := len(spec.Items)312 if v != 2 {313 t.Errorf("expected spec to have 2 items. got %d", v)314 }315 if !result.Ok {316 t.Errorf("parse failed, err %s", strings.Join(result.Errors(), ","))317 }318 return spec.Scenarios[0]319 }320 t.Run("Scenario with datatable when AllowScenarioDatatable=True", func(t *testing.T) {321 env.AllowScenarioDatatable = func() bool { return true }322 s := subject()323 if &s.DataTable.Table == nil {324 t.Error("expected scenario datatable to be not nil")325 }326 v := len(s.Items)327 if v != 3 {328 t.Errorf("expected scenario to have 3 items, got %d", v)329 }330 idCells, _ := s.DataTable.Table.Get("id")331 nameCells, _ := s.DataTable.Table.Get("name")332 var assertEqual = func(e, a interface{}) {333 if e != a {334 t.Errorf("expected %v got %v", e, a)335 }336 }337 assertEqual(len(idCells), 2)338 assertEqual(len(nameCells), 2)339 assertEqual(idCells[0].Value, "1")340 assertEqual(idCells[0].CellType, gauge.Static)341 assertEqual(idCells[1].Value, "2")342 assertEqual(idCells[1].CellType, gauge.Static)343 assertEqual(nameCells[0].Value, "foo")344 assertEqual(nameCells[0].CellType, gauge.Static)345 assertEqual(nameCells[1].Value, "bar")346 assertEqual(nameCells[1].CellType, gauge.Static)347 })348 t.Run("Parse Scenario with datatable when AllowScenarioDatatable=False", func(t *testing.T) {349 env.AllowScenarioDatatable = func() bool { return false }350 s := subject()351 if s.DataTable.Table.IsInitialized() {352 t.Error("expected scenario to have no datatable, got one")353 }354 })355}356func (s *MySuite) TestSpecWithDataTableHavingEmptyRowAndNoSeparator(c *C) {357 tokens := []*Token{358 &Token{Kind: gauge.SpecKind, Value: "Spec Heading"},359 &Token{Kind: gauge.CommentKind, Value: "Comment before data table"},360 &Token{Kind: gauge.TableHeader, Args: []string{"id", "name"}},361 &Token{Kind: gauge.TableRow, Args: []string{"1", "foo"}},362 &Token{Kind: gauge.TableRow, Args: []string{"", ""}},363 &Token{Kind: gauge.TableRow, Args: []string{"2", "bar"}},364 &Token{Kind: gauge.CommentKind, Value: "Comment before data table"},365 &Token{Kind: gauge.ScenarioKind, Value: "Scenario heading"},366 &Token{Kind: gauge.StepKind, Value: "my step"},367 }368 spec, result, err := new(SpecParser).CreateSpecification(tokens, gauge.NewConceptDictionary(), "")369 c.Assert(err, IsNil)370 c.Assert(len(spec.Items), Equals, 4)...

Full Screen

Full Screen

TestSpecWithDataTable

Using AI Code Generation

copy

Full Screen

1import (2func FeatureContext(s *godog.Suite) {3 s.Step(`^I have a "([^"]*)" named "([^"]*)"$`, iHaveAName)4 s.Step(`^I have a "([^"]*)" named "([^"]*)" with "([^"]*)" "([^"]*)"$`, iHaveANameWith)5 s.Step(`^I have a "([^"]*)" named "([^"]*)" with "([^"]*)" "([^"]*)" and "([^"]*)" "([^"]*)"$`, iHaveANameWithAnd)6 s.Step(`^I have a "([^"]*)" named "([^"]*)" with "([^"]*)" "([^"]*)" and "([^"]*)" "([^"]*)" and "([^"]*)" "([^"]*)"$`, iHaveANameWithAndAnd)7 s.Step(`^I have a "([^"]*)" named "([^"]*)" with "([^"]*)" "([^"]*)" and "([^"]*)" "([^"]*)" and "([^"]*)" "([^"]*)" and "([^"]*)" "([^"]*)"$`, iHaveANameWithAndAndAnd)

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run Gauge automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Most used method in

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful