Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improvements #14

Merged
merged 4 commits into from
Nov 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 6 additions & 12 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,19 @@ on: [push]
jobs:

build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.13', '1.14' ]
go-version: [ '1.20', '1.21' ]

steps:
- name: Set up Go ${{ matrix.go }}
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go }}
id: go

- name: Check out code into the Go module directory
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}

- name: Test
run: go test -v .
3 changes: 3 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module github.com/luxifer/ical

go 1.20
9 changes: 0 additions & 9 deletions lex.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,15 +61,6 @@ const (
itemEndVAlarm
)

var key = map[string]itemType{
"BEGIN:VCALENDAR": itemBeginVCalendar,
"END:VCALENDAR": itemEndVCalendar,
"BEGIN:VEVENT": itemBeginVEvent,
"END:VEVENT": itemEndVEvent,
"BEGIN:VALARM": itemBeginVAlarm,
"END:VALARM": itemEndVAlarm,
}

const eof = -1

// stateFn represents the state of the scanner as a function that returns the next state.
Expand Down
4 changes: 2 additions & 2 deletions lex_test.go
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package ical

import (
"io/ioutil"
"os"
"testing"
)

func TestLex(t *testing.T) {
ical, _ := ioutil.ReadFile("fixtures/example.ics")
ical, _ := os.ReadFile("fixtures/example.ics")
lexer := lex(string(ical))

for {
Expand Down
10 changes: 0 additions & 10 deletions parse.go
Original file line number Diff line number Diff line change
Expand Up @@ -144,16 +144,6 @@ func (p *parser) backup() {
p.peekCount++
}

// peek returns but does not consume the next token.
func (p *parser) peek() item {
if p.peekCount > 0 {
return p.token[p.peekCount-1]
}
p.peekCount = 1
p.token[0] = p.lex.nextItem()
return p.token[0]
}

// enterScope switch scope between Calendar, Event and Alarm
func (p *parser) enterScope() {
p.scope++
Expand Down
22 changes: 18 additions & 4 deletions parse_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,20 @@ func TestParse(t *testing.T) {
}
}

func BenchmarkParse(b *testing.B) {
for _, filename := range calendarList {
file, _ := os.Open(filename)
info, _ := file.Stat()

b.Run(filename, func(b *testing.B) {
b.SetBytes(info.Size())
for n := 0; n < b.N; n++ {
_, _ = Parse(file, nil)
}
})
}
}

func Test_parseDate(t *testing.T) {
loc, _ := time.LoadLocation("America/New_York")
type args struct {
Expand All @@ -39,7 +53,7 @@ func Test_parseDate(t *testing.T) {
prop: &Property{
Name: "DTSTART",
Params: map[string]*Param{
"VALUE": &Param{
"VALUE": {
Values: []string{"DATE"},
},
},
Expand All @@ -55,7 +69,7 @@ func Test_parseDate(t *testing.T) {
prop: &Property{
Name: "DTSTART",
Params: map[string]*Param{
"TZID": &Param{
"TZID": {
Values: []string{"America/New_York"},
},
},
Expand Down Expand Up @@ -93,7 +107,7 @@ func Test_parseDate(t *testing.T) {
prop: &Property{
Name: "DSTART",
Params: map[string]*Param{
"VALUE": &Param{
"VALUE": {
Values: []string{"DATE-TIME"},
},
},
Expand All @@ -109,7 +123,7 @@ func Test_parseDate(t *testing.T) {
prop: &Property{
Name: "DTSTART",
Params: map[string]*Param{
"TZID": &Param{
"TZID": {
Values: []string{"Z"},
},
},
Expand Down