~chipaca/snappy/snappy-tar-pack-mknod

« back to all changes in this revision

Viewing changes to helpers/cp_linux_test.go

  • Committer: Snappy Tarmac
  • Author(s): John R. Lenton
  • Date: 2015-05-05 22:32:10 UTC
  • mfrom: (435.1.5 copyfile)
  • Revision ID: snappy_tarmac-20150505223210-w7oz8tnd8y2xokwj
Moved two implementations of Copy into helpers with the linux implementation being based on sendfile. by chipaca approved by sergiusens

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2014-2015 Canonical Ltd
 
3
 *
 
4
 * This program is free software: you can redistribute it and/or modify
 
5
 * it under the terms of the GNU General Public License version 3 as
 
6
 * published by the Free Software Foundation.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 * GNU General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 */
 
17
 
 
18
package helpers
 
19
 
 
20
import (
 
21
        "io/ioutil"
 
22
        "os"
 
23
 
 
24
        . "launchpad.net/gocheck"
 
25
)
 
26
 
 
27
func (s *cpSuite) TestCpMulti(c *C) {
 
28
        maxcp = 2
 
29
        defer func() { maxcp = maxint }()
 
30
 
 
31
        c.Check(CopyFile(s.f1, s.f2, CopyFlagDefault), IsNil)
 
32
        bs, err := ioutil.ReadFile(s.f2)
 
33
        c.Check(err, IsNil)
 
34
        c.Check(bs, DeepEquals, s.data)
 
35
}
 
36
 
 
37
func (s *cpSuite) TestDoCpErr(c *C) {
 
38
        f1, err := os.Open(s.f1)
 
39
        c.Assert(err, IsNil)
 
40
        st, err := f1.Stat()
 
41
        c.Assert(err, IsNil)
 
42
        // force an error by asking it to write to a readonly stream
 
43
        c.Check(doCopyFile(f1, os.Stdin, st), NotNil)
 
44
}